Skip to content

Commit

Permalink
fix: 工作流错误
Browse files Browse the repository at this point in the history
  • Loading branch information
IceOfSummer committed Nov 11, 2024
1 parent 8ddcd2c commit a1882d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,4 @@ jobs:
labels: >
${{ needs.ci.outputs.lint_success != '0' && 'ci:lint-fail,' || '' }}
${{ needs.ci.outputs.test_success != '0' && 'ci:test-fail,' || '' }}
${{ success() && 'ci:success,' || '' }}
${{ needs.ci.outputs.test_success == '1' && needs.ci.outputs.lint_success == '1' && 'ci:success,' || '' }}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"build": "node scripts/build.mjs",
"check-and-build": "eslint ./src --fix && npm run build",
"start": "next start",
"lint": "eslint ./src --fix",
"lint": "eslint ./",
"lint-fix": "eslint ./ --fix",
"tsc": "tsc --noEmit",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"analyze": "cross-env ANALYZE=true npm run build"
Expand Down

0 comments on commit a1882d4

Please sign in to comment.