Skip to content

Bump dependencies (#20) #29

Bump dependencies (#20)

Bump dependencies (#20) #29

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- run: npm ci
- name: Install the browsers
run: npx playwright install --with-deps
- name: Run end-to-end tests
run: npm test
- run: npx nyc report --reporter=lcovonly
- name: Upload to Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}