-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
$ yarn add -D typecov @codechecks/client
+ codechecks.yml @ fe + .github/actions/fe.yml
- Loading branch information
Showing
4 changed files
with
948 additions
and
11 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: fe | ||
on: | ||
push: | ||
paths: ['fe/**'] | ||
defaults: | ||
run: | ||
working-directory: ./fe | ||
jobs: | ||
fe: | ||
name: fe | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@main | ||
- name: install | ||
run: yarn install --immutable | ||
- name: codechecks | ||
run: yarn run codechecks | ||
env: | ||
CC_SECRET: ${{ secrets.CC_SECRET }} | ||
- name: tsc | ||
run: yarn run vue-tsc | ||
if: ${{ !cancelled() }} | ||
- name: eslint | ||
run: yarn run eslint src | ||
if: ${{ !cancelled() }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
settings: | ||
branches: ['v2'] | ||
# https://github.com/codechecks/docs/blob/81efc535d898c802cb78642604b46e541324309b/configuration.md#speculative-branch-execution | ||
speculativeBranchSelection: false | ||
checks: | ||
- name: typecov | ||
options: | ||
strict: true | ||
atLeast: 95 |
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
Oops, something went wrong.