Bump @vitest/eslint-plugin from 1.1.18 to 1.1.20 in /nginx/oauth2/e2e #24
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: NGINX OAuth2 | |
permissions: { } | |
on: | |
push: | |
paths: | |
- 'nginx/oauth2/**' | |
- '!nginx/oauth2/README.md' | |
- '!nginx/oauth2/assets/**' | |
- '.github/workflows/nginx-oauth2.ym' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
defaults: | |
run: | |
shell: bash | |
working-directory: nginx/oauth2/e2e | |
jobs: | |
e2e: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
cache: 'npm' | |
cache-dependency-path: nginx/oauth2/e2e/package-lock.json | |
- name: Install dependencies | |
run: npm install | |
- name: Start containers | |
run: docker compose up -d | |
- name: Run e2e tests | |
run: npm run test | |
- name: Stop containers | |
if: always() | |
run: docker compose down -v |