Skip to content

chore(actions): bump actions/deploy-pages from 4 to 5 #11

chore(actions): bump actions/deploy-pages from 4 to 5

chore(actions): bump actions/deploy-pages from 4 to 5 #11

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm ci || npm install
- run: npm run test:unit
e2e:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm ci || npm install
- run: npx playwright install --with-deps chromium
- run: npm run test:e2e