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 fc95484 commit 2276b71Copy full SHA for 2276b71
.github/workflows/main.yml
@@ -10,7 +10,7 @@ on:
10
workflow_dispatch:
11
12
jobs:
13
- build:
+ test:
14
runs-on: ubuntu-latest
15
steps:
16
- name: Checkout
@@ -19,13 +19,13 @@ jobs:
19
uses: actions/setup-node@v2
20
with:
21
node-version: 14
22
- - name: Build
+ - name: Test
23
run: |
24
- npm ci
25
- npm run build
+ npm install
+ npm run test
26
27
- test:
28
- needs: build
+ build:
+ needs: test
29
30
31
@@ -34,6 +34,8 @@ jobs:
34
35
36
37
- - name: Test
38
- run: npm run test
+ - name: Build
+ run: |
39
+ npm ci
40
+ npm run build
41
0 commit comments