* security: pin wrangler 4.131.0 * chore: refresh lockfile for security update * security: refresh npm lockfile [npm-lock-refresh] * chore: remove one-time npm lock refresh workflow * ci: use locked dependencies and fail on high audit findings --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
21 lines
469 B
YAML
21 lines
469 B
YAML
name: Caterium QA
|
|
on:
|
|
push:
|
|
pull_request:
|
|
concurrency:
|
|
group: caterium-qa-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
qa:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
- run: npm ci
|
|
- run: npm audit --audit-level=high
|
|
- run: npm run check:deploy
|
|
- run: npx playwright install --with-deps chromium
|
|
- run: npm run test:e2e
|