Skip to content

Commit

Permalink
github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
daimor committed Aug 12, 2019
1 parent 1bfd2e3 commit 7e17401
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI

on: [push]

jobs:
build:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]

runs-on: ${{ matrix.platform }}

steps:
- name: Use Node.js 10.x
uses: actions/setup-node@v1
with:
version: 10
- run: npm install
- run: npm run compile
- run: npm run test
- run: npm run package

0 comments on commit 7e17401

Please sign in to comment.