Merge branch 'dev' into HOM-2_small-interior-banners-for-homesite #6160
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: Run Eslint | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set the correct Node version using nvm | |
shell: bash -l {0} | |
run: nvm install | |
- name: Install modules | |
run: npm ci | |
env: | |
# The following var needs to correspond with what's used in the .npmrc file for fa pro | |
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FA_NPM_TOKEN }} | |
- name: Run ESLint | |
run: npm run lint | |
env: | |
# The following var needs to correspond with what's used in the .npmrc file for fa pro | |
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FA_NPM_TOKEN }} |