Removed deprecated styles
and classes
inputs
#71
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: Check | |
on: pull_request | |
jobs: | |
check5: | |
name: Font Awesome 5 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '20' | |
- uses: actions/cache@v2 | |
with: | |
path: .yarn/cache | |
key: ${{ hashFiles('yarn.lock') }} | |
- run: corepack enable | |
- run: yarn | |
- run: yarn add -D @fortawesome/[email protected] @fortawesome/[email protected] @fortawesome/[email protected] | |
- run: yarn format:enforce | |
- run: yarn lint | |
- run: yarn test | |
- run: yarn test:schematics | |
- run: yarn build | |
- run: yarn build:schematics | |
- run: yarn test:demo | |
- run: yarn add -D chromedriver@~`google-chrome --version | awk '{print $3}' | awk -F. '{print $1}'` | |
- run: yarn test:integration | |
check6: | |
name: Font Awesome 6 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '20' | |
- uses: actions/cache@v2 | |
with: | |
path: .yarn/cache | |
key: ${{ hashFiles('yarn.lock') }} | |
- run: corepack enable | |
- run: yarn | |
- run: yarn format:enforce | |
- run: yarn lint | |
- run: yarn test | |
- run: yarn test:schematics | |
- run: yarn build | |
- run: yarn build:schematics | |
- run: yarn test:demo | |
- run: yarn add -D chromedriver@~`google-chrome --version | awk '{print $3}' | awk -F. '{print $1}'` | |
- run: yarn test:integration |