double up classnames to ensure precedence over BS styles #1444
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: Lint javascript | |
on: push | |
jobs: | |
js-lint: | |
runs-on: ubuntu-latest | |
env: | |
FONTAWESOME_NPM_AUTH_TOKEN: ${{ secrets.FONTAWESOME_NPM_AUTH_TOKEN }} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.node-version' | |
- run: npm config set "@fortawesome:registry" https://npm.fontawesome.com/ && | |
npm config set "//npm.fontawesome.com/:_authToken" $FONTAWESOME_NPM_AUTH_TOKEN | |
- run: yarn | |
- run: yarn lint |