We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 998aff4 commit 876b6c1Copy full SHA for 876b6c1
1 file changed
.github/workflows/pr.yml
@@ -7,13 +7,24 @@ jobs:
7
strategy:
8
matrix:
9
node: [16]
10
+
11
steps:
- - uses: actions/checkout@v2
12
- - uses: actions/setup-node@v2
+ - name: Checkout
13
+ uses: actions/checkout@v2
14
15
+ - name: Install Node.js
16
+ uses: actions/setup-node@v2
17
with:
18
node-version: ${{ matrix.node }}
- - run: |
- npm install --legacy-peer-deps
- npm run build
- npm run typecheck
19
- npm run test
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