Skip to content

Bump jsdom from 20.0.3 to 26.1.0 #269

Bump jsdom from 20.0.3 to 26.1.0

Bump jsdom from 20.0.3 to 26.1.0 #269

name: Run Tests
on:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Enable Corepack
run: corepack enable
shell: bash
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: yarn
cache-dependency-path: yarn.lock
- name: Install dependencies
run: yarn install
- name: Run linting
run: yarn tsc && yarn lint
- name: Run tests
run: yarn test