Skip to content

Commit 7a4ae6b

Browse files
committed
ci: also check compile step
1 parent dba8a18 commit 7a4ae6b

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/node.js.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,16 @@ jobs:
3737
CC_TEST_REPORTER_ID: ac461a4a35fe5e70a011b20969f4298ad55da3498f1efbe0019d2bc3b99cf885
3838
with:
3939
coverageCommand: npm run coverage
40+
41+
test-compile:
42+
needs: [ test ]
43+
name: test-compile
44+
runs-on: ubuntu-latest
45+
steps:
46+
- uses: actions/checkout@v2
47+
- name: Use Node.js ${{ matrix.node-version }}
48+
uses: actions/setup-node@v1
49+
with:
50+
node-version: ${{ matrix.node-version }}
51+
- run: npm ci
52+
- run: npm run compile

0 commit comments

Comments
 (0)