Skip to content

Commit

Permalink
(#1) Re-enabling the GitHub Action to build and test on push.
Browse files Browse the repository at this point in the history
  • Loading branch information
danrivett committed Feb 22, 2020
1 parent a3acdd7 commit cc5eb53
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 26 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/tests-runner.disabled

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/tests-runner.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Tests Runner

on: [push]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x, 12.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm run link:packages
npm run build:packages
npm run test:packages
env:
CI: true

0 comments on commit cc5eb53

Please sign in to comment.