chore(deps): bump oauth2-proxy/oauth2-proxy from v7.6.0 to v7.7.0 #1010
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Automated Tests and Linting | |
on: | |
push: | |
branches-ignore: | |
- "main" | |
- "develop" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: "Test and Build" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: yarn | |
cache-dependency-path: "ui/yarn.lock" | |
- name: Install packages | |
run: yarn install --immutable | |
working-directory: ui | |
- name: Run tests | |
run: yarn test | |
working-directory: ui |