chore(deps-dev): bump webpack from 5.91.0 to 5.94.0 #362
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: Test | |
on: [push, pull_request] | |
permissions: read-all | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Node.js setup | |
uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
node-version: 20 | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint | |
run: npm run lint | |
test: | |
name: Run tests | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
node-version: | |
- 12 | |
- 14 | |
- 16 | |
- 18 | |
- 20 | |
- 22 | |
include: | |
- os: macos-latest | |
node-version: 20 | |
- os: windows-latest | |
node-version: 20 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Node.js setup | |
uses: actions/setup-node@v4 | |
with: | |
cache: npm | |
node-version: ${{ matrix.node-version }} | |
- name: Use specific version of npm for Node.js 12 & 14 | |
if: matrix.node-version < 16 | |
run: npm install -g npm@8 | |
- name: Install dependencies | |
# Use `--engine-strict=false` to ignore engine errors from XO dependencies | |
run: npm ci --engine-strict=false | |
- name: Test | |
run: npm test |