Skip to content

Commit b7026cb

Browse files
committed
github actions
1 parent 1bfd2e3 commit b7026cb

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/main.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
- uses: actions/checkout@v1
15+
- name: Use Node.js 10.x
16+
uses: actions/setup-node@v1
17+
with:
18+
version: 10
19+
- run: npm install
20+
- run: npm run compile
21+
- run: npm run test
22+
- run: npm run package

0 commit comments

Comments
 (0)