Skip to content

Security improvements and translations #5

Security improvements and translations

Security improvements and translations #5

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install
- run: npm test
e2e:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm install
- run: npm run build:bundle
- run: npx http-server -p 8080 -c-1 . &
- run: npx playwright install --with-deps
- run: sleep 3
- run: npm run test:e2e