Skip to content

added source maps

added source maps #198

Workflow file for this run

name: Test
on:
pull_request:
branches:
- main
- v2
- v1
jobs:
test:
strategy:
matrix:
version: [ 18, 20, 22 ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
- run: npm ci
- run: npm run build
- run: npm run test
- run: npm run install:browsers
- run: npm run test:e2e
- name: junit report
uses: mikepenz/action-junit-report@v4
if: always()
with:
report_paths: './test-e2e/report.xml'
fail_on_failure: true