pass through mathlib prop #90
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "build-test" | |
on: | |
pull_request: | |
push: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Cached install | |
uses: bahmutov/npm-install@v1.1.0 | |
- name: Test | |
run: yarn build && yarn test --coverage | |
- name: Report coverage | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
build: # ensure the action runs without error | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- run: | | |
yarn install | |
yarn build | |
- uses: ./ | |
with: | |
repo: . | |
out: bundle.json |