Skip to content

Add missing imports to the documentation #91

Add missing imports to the documentation

Add missing imports to the documentation #91

Workflow file for this run

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/free-regular-svg-icons@5.15.4 @fortawesome/free-solid-svg-icons@5.15.4
- 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
- run: yarn test:integration:ssr
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
- run: yarn test:integration:ssr