1.59.0 #1882
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: NPM Check and eslint | |
on: [ push ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '14' | |
cache: 'npm' | |
cache-dependency-path: '**/package-lock.json' | |
- name: npm install | |
run: | | |
npm ci | |
- name: eslint | |
run: | | |
npm run lint-ci | |
- name: build assets to see if everything still builds | |
run: | | |
npm run build |