Update dependency eslint-plugin-n to v17 #349
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 v20 CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install GraphicsMagick | |
run: | | |
sudo apt-get install graphicsmagick | |
gm version | |
- name: Use Node.js v20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Do all npm stuff | |
run: | | |
npm ci | |
npm run lint | |
npm test |