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 dba8a18 commit 7a4ae6bCopy full SHA for 7a4ae6b
.github/workflows/node.js.yml
@@ -37,3 +37,16 @@ jobs:
37
CC_TEST_REPORTER_ID: ac461a4a35fe5e70a011b20969f4298ad55da3498f1efbe0019d2bc3b99cf885
38
with:
39
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