Skip to content

Simplify tests in GitHub workflow #1053

Simplify tests in GitHub workflow

Simplify tests in GitHub workflow #1053

Workflow file for this run

name: checks
on:
push:
branches: [master]
pull_request: {}
concurrency:
group: checks-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up environment
uses: ./.github/actions/setup
- name: Run linter
run: yarn lint
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up environment
uses: ./.github/actions/setup
- name: Run tests
run: yarn test
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up environment
uses: ./.github/actions/setup
- name: Run coverage
run: yarn coverage
- uses: codecov/codecov-action@v3