Skip to content

Commit

Permalink
Configure github action to test and build
Browse files Browse the repository at this point in the history
  • Loading branch information
mattheusv committed Jul 3, 2020
1 parent 57f98a6 commit e5eaed8
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
name: "build-test"
on: # rebuild any PRs and main branch changes
name: "test"
on:
pull_request:
paths-ignore:
- '**.md'
push:
branches:
- master
- 'releases/*'
- 'releases/v*'
paths-ignore:
- '**.md'

jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- ubuntu-latest
- macOS-latest
- windows-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- run: |
npm install
npm run all
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: ./
with:
milliseconds: 1000
yarn install
yarn run all

0 comments on commit e5eaed8

Please sign in to comment.