build(deps-dev): bump jsdom from 22.1.0 to 25.0.1 #16
Workflow file for this run
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: Node.js CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
node-version: ['18.x', '20.x', '22.x'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
- run: npm run build | |
- run: npm run build:docs | |
# Use `--ignore-scripts` to avoid running the `pretest` script. We already | |
# built the project in a previous step, no need to build it again. | |
- run: npm run test --ignore-scripts | |
- run: npm run test:types | |
- run: npm run stylelint |