Skip to content

Bump jsdom from 27.4.0 to 28.0.0 in the testing group #15

Bump jsdom from 27.4.0 to 28.0.0 in the testing group

Bump jsdom from 27.4.0 to 28.0.0 in the testing group #15

Workflow file for this run

name: PR workflow
on:
pull_request:
branches:
- master
env:
CI: true
jobs:
checks:
name: Checks
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Node
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version-file: .nvmrc
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Typecheck
run: npm run typecheck
- name: Linting
run: npm run lint
- name: Run tests
run: npm run test