Bump koa from 2.15.3 to 2.15.4 (#423) #894
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: | |
branches: | |
- main | |
jobs: | |
build: # make sure build/ci work properly | |
runs-on: ubuntu-latest | |
timeout-minutes: 2 | |
steps: | |
- uses: actions/checkout@v2 | |
- run: | | |
yarn --frozen-lockfile | |
- run: | | |
yarn build | |
test: # make sure the action works on a clean machine without building | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Install git | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y git | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install dependencies | |
run: yarn --frozen-lockfile | |
- name: Run linter | |
run: yarn lint | |
- name: Run check format | |
run: yarn format-check | |
- name: Run tests | |
run: yarn test --detectOpenHandles --forceExit | |
- name: Upload coverage | |
uses: caffco/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
repository_root_path: ${{github.workspace}} | |
collect_coverage: 'true' | |
coverage_file_patterns: | | |
coverage/lcov.info:lcov |