File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ ---
2+ " simplefrontend " : patch
3+ ---
4+
5+ removed changed files and republish
Original file line number Diff line number Diff line change @@ -25,22 +25,14 @@ jobs:
2525 node-version : lts/*
2626 cache : " pnpm"
2727
28- - name : Get changed files in source folder
29- id : changed-files
30- uses : tj-actions/changed-files@v45
31-
3228 - name : Install dependencies
3329 run : pnpm install
3430
3531 - name : Run code quality format check
36- env :
37- ALL_CHANGED_FILES : ${{ steps.changed-files.outputs.all_changed_files }}
38- run : pnpm exec prettier --check --ignore-unknown ${ALL_CHANGED_FILES}
32+ run : pnpm exec prettier --check --ignore-unknown src
3933
4034 - name : Run code quality lint check
41- env :
42- ALL_CHANGED_FILES : ${{ steps.changed-files.outputs.all_changed_files }}
43- run : pnpm exec eslint --no-warn-ignored ${ALL_CHANGED_FILES}
35+ run : pnpm exec eslint --no-warn-ignored src
4436
4537 - name : Run integration tests
4638 run : pnpm run test
Original file line number Diff line number Diff line change 77
88concurrency : ${{ github.workflow }}-${{ github.ref }}
99
10+ permissions :
11+ contents : write
12+ pull-requests : write
13+
1014jobs :
1115 release :
1216 name : Release
You can’t perform that action at this time.
0 commit comments