chore(gitignore): ignore .netlify folder #1264
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: Code audit | |
on: [push] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '10.x' | |
- name: install npm dependencies | |
run: npm install --no-optional | |
working-directory: 'projects/browser-extension' | |
env: | |
CI: true | |
- name: lint files | |
run: npm run lint -- --max-warnings 0 | |
working-directory: 'projects/browser-extension' |