fix: update deps #183
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: Tests | |
on: | |
pull_request: | |
branches: [ master ] | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
# Hopefully temporary fix for Puppeteer "No usable sandbox!" error which we get on Ubuntu 24.04+ | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
# The lowest one should be the minimum supported node version, per package.json "engines" field | |
node: [ "18.0.0", "20", "22" ] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- uses: pnpm/action-setup@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'pnpm' | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm lint | |
- run: pnpm test |