Skip to content

Add CodeQL analysis workflow configuration #59

Add CodeQL analysis workflow configuration

Add CodeQL analysis workflow configuration #59

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 22
- run: npm ci
# - run: npx playwright install
- run: npm run build
- run: npm run report:generate
# - run: npm run test:e2e
- name: junit report
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: './test-e2e/report/report.xml'
fail_on_failure: true