* fix not saving action/cache
after failed jobs @ actions/{be,fe,c#…
#36
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: fe | |
on: | |
push: | |
#paths: [fe/**] | |
defaults: | |
run: | |
working-directory: fe | |
jobs: | |
tsc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/fe | |
- run: yarn run vue-tsc | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/fe | |
- run: yarn run eslint src | |
codechecks: | |
runs-on: ubuntu-latest | |
steps: # contains CVE that triggers Dependabot | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/fe | |
- run: | | |
yarn add -D typecov @codechecks/client | |
yarn run codechecks ../.github/codechecks.yml | |
env: | |
CC_SECRET: ${{ secrets.CC_SECRET }} |