We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bfd2e3 commit 7e17401Copy full SHA for 7e17401
.github/workflows/main.yml
@@ -0,0 +1,21 @@
1
+name: CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ strategy:
8
+ matrix:
9
+ platform: [ubuntu-latest, macos-latest, windows-latest]
10
11
+ runs-on: ${{ matrix.platform }}
12
13
+ steps:
14
+ - name: Use Node.js 10.x
15
+ uses: actions/setup-node@v1
16
+ with:
17
+ version: 10
18
+ - run: npm install
19
+ - run: npm run compile
20
+ - run: npm run test
21
+ - run: npm run package
0 commit comments