File tree Expand file tree Collapse file tree 5 files changed +1316
-1280
lines changed
Expand file tree Collapse file tree 5 files changed +1316
-1280
lines changed Original file line number Diff line number Diff line change 1+ name : autofix.ci # needed to securely identify the workflow
2+
3+ on :
4+ pull_request :
5+
6+ permissions : {}
7+
8+ concurrency :
9+ group : ${{ github.workflow }}-${{ github.ref }}
10+ cancel-in-progress : true
11+
12+ jobs :
13+ fix :
14+ name : Run automated fix
15+ uses : prettier/shared-workflows/.github/workflows/automated-fix.yml@main
16+ with :
17+ repository : prettier/angular-estree-parser
Original file line number Diff line number Diff line change 1+ name : Publish Package
2+
3+ on :
4+ push :
5+ tags :
6+ - v*
7+
8+ permissions : {}
9+
10+ concurrency :
11+ group : ${{ github.workflow }}-${{ github.ref }}
12+ cancel-in-progress : true
13+
14+ jobs :
15+ publish :
16+ runs-on : ubuntu-latest
17+ permissions :
18+ id-token : write
19+ steps :
20+ - name : Checkout
21+ uses : actions/checkout@v6
22+
23+ - name : Setup Node.js
24+ uses : actions/setup-node@v6
25+ with :
26+ node-version : " lts/*"
27+
28+ - name : Install Dependencies
29+ run : yarn --immutable
30+
31+ - name : Build package
32+ run : yarn build
33+
34+ - name : Publish to NPM
35+ run : npm publish
Original file line number Diff line number Diff line change 1+ {
2+ "$schema" : " https://unpkg.com/release-it@18/schema/release-it.json" ,
3+ "git" : {
4+ "commitMessage" : " chore: release v${version}"
5+ },
6+ "github" : {
7+ "release" : true
8+ },
9+ "npm" : {
10+ "publish" : false
11+ }
12+ }
Original file line number Diff line number Diff line change 3333 "fix:prettier" : " prettier . --write" ,
3434 "test" : " vitest" ,
3535 "build" : " tsdown --unbundle" ,
36- "release" : " yarn build && standard-version "
36+ "release" : " yarn build"
3737 },
3838 "dependencies" : {
3939 "yaml" : " ^2.8.2"
5050 "npm-run-all2" : " 8.0.4" ,
5151 "patch-package" : " 8.0.1" ,
5252 "prettier" : " 3.7.4" ,
53- "standard-version " : " 9.5.0 " ,
53+ "release-it " : " 19.0.6 " ,
5454 "tsdown" : " 0.17.0-beta.6" ,
5555 "typescript" : " 5.9.3" ,
5656 "typescript-eslint" : " 8.48.1" ,
You can’t perform that action at this time.
0 commit comments