21 lines
476 B
YAML
21 lines
476 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 webkit
|
|
- run: npm run test:e2e
|