File tree Expand file tree Collapse file tree 5 files changed +2155
-3156
lines changed
Expand file tree Collapse file tree 5 files changed +2155
-3156
lines changed Original file line number Diff line number Diff line change 88 test-or-release :
99 runs-on : ubuntu-latest
1010 steps :
11- - name : Checkout Sources
12- uses : actions/checkout@v3
13- - name : Install Node
14- uses : actions/setup-node@v3
11+ - uses : actions/checkout@v4
12+ - uses : pnpm/action-setup@v4
13+ with :
14+ version : latest
15+ - uses : actions/setup-node@v4
1516 with :
1617 node-version : ' lts/*'
1718 registry-url : ' https://registry.npmjs.org'
18- - name : Install PNPM
19- uses : pnpm/action-setup@v2
20- with :
21- version : latest
22- run_install : |
23- - args: [--frozen-lockfile, --no-verify-store-integrity, --no-optional]
24- - name : Test
25- run : npm test
26- - name : Publish
27- uses : cycjimmy/semantic-release-action@v3
19+ cache : ' pnpm'
20+ - run : pnpm i --frozen-lockfile --no-verify-store-integrity
21+ - run : npm test
22+ - uses : prantlf/publish-release-action@v1
2823 with :
29- semantic_version : 19
30- branches : master
24+ no-archives : true
3125 env :
3226 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3327 NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 1+ import js from '@eslint/js'
2+ import globals from 'globals'
3+
4+ export default [
5+ js . configs . recommended ,
6+ {
7+ languageOptions : {
8+ ecmaVersion : 'latest' ,
9+ globals : {
10+ ...globals . node
11+ }
12+ }
13+ }
14+ ]
Original file line number Diff line number Diff line change 3636 "c8" : {
3737 "reporter" : []
3838 },
39- "release" : {
40- "plugins" : [
41- " @semantic-release/commit-analyzer" ,
42- " @semantic-release/release-notes-generator" ,
43- " @semantic-release/changelog" ,
44- " @semantic-release/npm" ,
45- [
46- " @semantic-release/github" ,
47- {
48- "failComment" : false
49- }
50- ],
51- " @semantic-release/git"
52- ]
53- },
5439 "peerDependencies" : {
55- "requirejs-esm-preprocessor" : " ^1.3 .1"
40+ "requirejs-esm-preprocessor" : " ^2.1 .1"
5641 },
5742 "devDependencies" : {
58- "@semantic-release/changelog " : " ^6.0.3 " ,
59- "@semantic-release/git " : " ^10.0.1 " ,
60- "c8 " : " ^7.14 .0" ,
61- "eslint " : " ^8.41 .0" ,
62- "jasmine-core" : " ^5.0.0 " ,
63- "karma" : " ^6.4.2 " ,
43+ "@eslint/js " : " ^9.26.0 " ,
44+ "c8 " : " ^10.1.3 " ,
45+ "eslint " : " ^9.26 .0" ,
46+ "globals " : " ^16.1 .0" ,
47+ "jasmine-core" : " ^5.7.1 " ,
48+ "karma" : " ^6.4.4 " ,
6449 "karma-brief-reporter" : " ^0.2.2" ,
6550 "karma-chrome-launcher" : " ^3.2.0" ,
6651 "karma-jasmine" : " ^5.1.0" ,
67- "requirejs-esm-preprocessor" : " ^1.4 .1"
52+ "requirejs-esm-preprocessor" : " ^2.1 .1"
6853 },
6954 "keywords" : [
7055 " karma-preprocessor" ,
You can’t perform that action at this time.
0 commit comments