Ignore some non-important ESLint errors #240
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 CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- run: npm ci | |
- run: npm test | |
- run: npm run eslint | |
- run: npm install -g web-ext # build tool | |
- run: npm run build-chrome | |
- run: npm run build-firefox | |
- run: npm run build-firefox-mv3 |