Skip to content

Version 1.0.3 bump and changelog #83

Version 1.0.3 bump and changelog

Version 1.0.3 bump and changelog #83

Workflow file for this run

name: CI
on:
push:
branches: [main, 'release/**']
pull_request:
branches: [main, 'release/**']
jobs:
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
- run: npm ci
- run: npm test
- run: npm run build
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: actions/setup-node@v6
with:
node-version: 22
cache: npm
- run: npm ci
- run: npx playwright install --with-deps chromium
- run: npm run test:e2e
- uses: actions/upload-artifact@v7
if: failure()
with:
name: playwright-report
path: playwright-report/
retention-days: 7