Bump enhanced-resolve from 5.17.0 to 5.17.1 #1050
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: "ci" | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4.0.3 | |
with: | |
node-version: '18' | |
- run: npm ci --no-progress | |
- run: npm run lint | |
test: | |
name: Test using Node.js ${{ matrix.node }} running on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: [18, 20, 22] | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v4.0.3 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: npm ci --no-progress | |
- run: npm test |