Small lints #1226
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- main | |
- ts-migration | |
pull_request: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
test: | |
name: 'Tests on ${{matrix.platform}}' | |
strategy: | |
fail-fast: false | |
matrix: | |
platform: | |
- ubuntu-latest | |
- windows-latest | |
runs-on: ${{matrix.platform}} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/ci-setup | |
- name: Run Tests | |
run: yarn test:ci --color | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
if: ${{ matrix.platform == 'ubuntu-latest' && always() }} | |
typescript: | |
name: TypeScript | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/ci-setup | |
- name: Check Types | |
run: yarn tsc:all | |
test_react18: | |
name: Test React 18 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/ci-setup | |
- name: Run Tests with React 18 | |
run: yarn test:react18:ci | |
test_prod: | |
name: Test Prod | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/ci-setup | |
- name: Prod Tests | |
run: yarn test:prod | |
test_dist: | |
name: Test Dist | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/ci-setup | |
- name: Dist Tests | |
run: yarn test:dist | |
linting: | |
name: Linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/ci-setup | |
- name: ESLint | |
run: yarn lint:check | |
dtslint: | |
name: dtslint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/ci-setup | |
- name: dtslint | |
run: yarn test:typescript |