Skip to content

Commit c2a0701

Browse files
Create
1 parent 9e5acf9 commit c2a0701

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/demodeploy.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
21+
coverageLocations: |
22+
${{github.workspace}}/coverage/lcov.info:lcov

0 commit comments

Comments
 (0)