Skip to content

chore(deps): update dependency @types/node to v20.10.4 #167

chore(deps): update dependency @types/node to v20.10.4

chore(deps): update dependency @types/node to v20.10.4 #167

Workflow file for this run

name: CI Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: yarn
- name: Build
run: yarn build
- name: Jest tests
run: yarn test
- name: Install Playwright Browsers
run: yarn playwright install --with-deps
- name: Run Playwright tests
run: yarn playwright test
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30