-
Notifications
You must be signed in to change notification settings - Fork 150
50 lines (50 loc) · 1.53 KB
/
check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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/fontawesome-svg-core@1.2.36 @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
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