Create sia-skynet.yml

This commit is contained in:
Karol Wypchło 2020-02-14 17:22:28 -05:00 committed by GitHub
parent 9e1dd62d40
commit aabd180150
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

24
.github/workflows/sia-skynet.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: sia-skynet package CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn build:client
- run: npm test --if-present
env:
CI: true