Skip to content

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.0.0 to 8.21.0 #865

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.0.0 to 8.21.0

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.0.0 to 8.21.0 #865

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Cache Node modules
uses: actions/cache@v3
with:
path: ~/.npm # Cache the npm cache directory
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npm run test:install
- name: Run Playwright tests
run: npm run test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30