Skip to content

Bump sinon from 17.0.2 to 18.0.0 (#246) #74

Bump sinon from 17.0.2 to 18.0.0 (#246)

Bump sinon from 17.0.2 to 18.0.0 (#246) #74

Workflow file for this run

name: Build
on: push
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]
steps:
-
uses: actions/checkout@v3
-
name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
-
name: Install dependencies
run: yarn install
-
name: Install Playwright
run: npx playwright install --with-deps firefox
-
name: Run tests
run: npm run test && npm run build