Bump sinon from 17.0.2 to 18.0.0 (#246) #74
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |