Skip to content

Chores: Bump jsdom from 22.1.0 to 23.2.0 #144

Chores: Bump jsdom from 22.1.0 to 23.2.0

Chores: Bump jsdom from 22.1.0 to 23.2.0 #144

Workflow file for this run

name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Using Node 16
uses: actions/setup-node@v3
with:
node-version: 14
- name: Update npm version to latest
run: npm install -g npm@latest # stop showing warnings about the lockfile
- name: Install dependencies
run: |
npm config set //npm.pkg.github.com/:_authToken=$NODE_AUTH_TOKEN
npm install
env:
NODE_AUTH_TOKEN: ${{github.token}}
- name: Run tests
run: npm run test