Skip to content

Commit 876b6c1

Browse files
authored
chore: break pr.yml into more steps (#4550)
1 parent 998aff4 commit 876b6c1

1 file changed

Lines changed: 18 additions & 7 deletions

File tree

.github/workflows/pr.yml

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,24 @@ jobs:
77
strategy:
88
matrix:
99
node: [16]
10+
1011
steps:
11-
- uses: actions/checkout@v2
12-
- uses: actions/setup-node@v2
12+
- name: Checkout
13+
uses: actions/checkout@v2
14+
15+
- name: Install Node.js
16+
uses: actions/setup-node@v2
1317
with:
1418
node-version: ${{ matrix.node }}
15-
- run: |
16-
npm install --legacy-peer-deps
17-
npm run build
18-
npm run typecheck
19-
npm run test
19+
20+
- name: Install Dependencies
21+
run: npm install --legacy-peer-deps
22+
23+
- name: Build the Project
24+
run: npm run build
25+
26+
- name: Running Typechecks
27+
run: npm run typecheck
28+
29+
- name: Running Tests
30+
run: npm run test

0 commit comments

Comments
 (0)