Skip to content

Bump dependencies

Bump dependencies #159

Workflow file for this run

name: Build and test
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Start services
uses: hoverkraft-tech/[email protected]
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 18
- working-directory: .
run: npm ci
- working-directory: .
run: npm run format
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30