diff --git a/.github/workflows/sia-skynet.yml b/.github/workflows/sia-skynet.yml new file mode 100644 index 00000000..095cfd10 --- /dev/null +++ b/.github/workflows/sia-skynet.yml @@ -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