Skip to content

Commit 7e17401

Browse files
committed
github actions
1 parent 1bfd2e3 commit 7e17401

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

Diff for: .github/workflows/main.yml

+21
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)