Merge pull request #386 from dclstn/dependabot/npm_and_yarn/dotenv-16… #404
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: ['master'] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/[email protected] | |
with: | |
node-version: 20 | |
registry-url: https://registry.npmjs.org | |
cache: 'npm' | |
- run: node --version | |
- run: npm --version | |
- run: npm cache clean --force | |
- name: Install Node Dependencies | |
run: npm install --no-package-lock | |
- name: Lint | |
run: npm run lint | |
- name: Build Chrome | |
run: npm run build:chrome | |
- name: Build Firefox | |
run: npm run build:firefox | |
- name: Post Lint Firefox | |
run: npm run manifest-lint |