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 9e5acf9 commit c2a0701Copy full SHA for c2a0701
.github/workflows/demodeploy.yml
@@ -0,0 +1,22 @@
1
+jobs:
2
+ test:
3
+ strategy:
4
+ matrix:
5
+ # platform: [ windows-latest, macOS-latest ]
6
+ platform: [ubuntu-latest]
7
+ node: ['16']
8
+ name: Code check on Node.${{ matrix.node }}/${{ matrix.platform }}
9
+ runs-on: ${{ matrix.platform }}
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - uses: actions/setup-node@v2
13
+ with:
14
+ node-version: '16'
15
+ - run: npm ci
16
+ - run: npm run deploy:demo
17
+ - uses: paambaati/codeclimate-action@v2.7.5
18
+ env:
19
+ CC_TEST_REPORTER_ID: af882de8052c9e436d8e7980bec9c61773f9a9e8cf327b27e97832bfa9628f11
20
21
+ coverageLocations: |
22
+ ${{github.workspace}}/coverage/lcov.info:lcov
0 commit comments