40 lines
929 B
YAML
40 lines
929 B
YAML
name: Verify
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: verify-${{ gitea.repository }}-${{ gitea.ref }}
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
verify:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 45
|
|
env:
|
|
CI: "true"
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: "22"
|
|
cache: npm
|
|
- name: Select declared npm version
|
|
run: npm install --global npm@11.17.0
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Audit runtime dependencies
|
|
run: npm audit --omit=dev --audit-level=moderate
|
|
- name: Check, test, and build
|
|
run: npm run check
|
|
- name: Install browser engines
|
|
run: npx playwright install --with-deps chromium firefox webkit
|
|
- name: Browser tests
|
|
run: npm run test:browser
|