Merge ain/perf
into master to make master
the default branch
#5
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: Checks | |
on: | |
push: | |
branches: ['ain/perf'] | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
name: ${{ matrix.name }} | |
timeout-minutes: 10 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: Build | |
cmd: yarn build | |
- name: Test | |
cmd: yarn test | |
- name: Types | |
cmd: yarn test:types | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 | |
- uses: actions/setup-node@aca7b64a59c0063db8564e0ffdadd3887f1cbae5 | |
with: | |
node-version-file: .nvmrc | |
- run: yarn | |
- run: ${{ matrix.cmd }} |