Merge pull request #212 from cheehwatang/depfu/update/npm/ts-jest-29.2.5 #426
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: Test | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Prepare for CI | |
uses: ./.github/actions/prepare | |
- name: Run Tests | |
run: npm test | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
- name: Run Prettier | |
run: | | |
npm run format:check | |
- name: Run ESLint | |
run: | | |
npm run lint |