update to v17-alpha.7, testing bug fixed (#3771) #129
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: Main Tests | |
# report coverage on main for codecov baseline | |
on: | |
push: | |
branches: [main] | |
jobs: | |
install: | |
name: Install | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
cache: yarn | |
- name: Cache node modules | |
id: cache-modules | |
uses: actions/cache@v4 | |
with: | |
path: | | |
**/node_modules | |
key: modules-${{ github.sha }} | |
- uses: actions/cache@v4 | |
with: | |
path: | | |
~/.cache/Cypress | |
key: cypress-${{ runner.os }}-${{ hashFiles('yarn.lock') }} | |
- run: yarn install --frozen-lockfile --immutable | |
jest: | |
name: Jest Unit Tests | |
runs-on: ubuntu-latest | |
needs: [install] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- id: cache-modules | |
uses: actions/cache@v4 | |
with: | |
path: | | |
**/node_modules | |
key: modules-${{ github.sha }} | |
- run: yarn test --coverage | |
- uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: coverage/lcov.info | |
fail_ci_if_error: true | |
verbose: true |