File tree Expand file tree Collapse file tree 13 files changed +3911
-24
lines changed Expand file tree Collapse file tree 13 files changed +3911
-24
lines changed Original file line number Diff line number Diff line change 2020 // "forwardPorts": [],
2121
2222 // Use 'postCreateCommand' to run commands after the container is created.
23- "postCreateCommand" : " pnpm install" ,
23+ "postCreateCommand" : " pnpm install --frozen-lockfile " ,
2424
2525 // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
2626 "remoteUser" : " node"
Original file line number Diff line number Diff line change @@ -29,10 +29,10 @@ jobs:
2929 - uses : actions/setup-node@v4
3030 - name : Install And Build
3131 run : |+
32- pnpm install
32+ pnpm install --frozen-lockfile
3333 pnpm run build
3434 cd explorer-v2
35- pnpm install
35+ pnpm install --frozen-lockfile
3636 pnpm run pre-build
3737 pnpm run build
3838 - name : Setup Pages
Original file line number Diff line number Diff line change 1414 - uses : pnpm/action-setup@v4
1515 - uses : actions/setup-node@v4
1616 - name : Install Packages
17- run : pnpm install
17+ run : pnpm install --frozen-lockfile
1818 - name : Lint
1919 run : pnpm run lint
2020 - name : Build
3232 with :
3333 node-version : ${{ matrix.node-version }}
3434 - name : Install Packages
35- run : pnpm install
35+ run : pnpm install --frozen-lockfile
3636 - name : Test
3737 run : pnpm run test
3838 test-for-svelte-v5 :
4343 - name : Use Node.js
4444 uses : actions/setup-node@v4
4545 - name : Install Packages
46- run : pnpm install
46+ run : pnpm install --frozen-lockfile
4747 - name : Test
4848 run : pnpm run test
4949
5959 pnpm install -D svelte@4
6060 rm -rf node_modules
6161 - name : Install Packages
62- run : pnpm install
62+ run : pnpm install --frozen-lockfile
6363 - name : Test
6464 run : pnpm run test
6565
8080 pnpm install -D svelte@3
8181 rm -rf node_modules
8282 - name : Install Packages
83- run : pnpm install
83+ run : pnpm install --frozen-lockfile
8484 - name : Test
8585 run : pnpm run test
8686 update-fixtures :
9090 - uses : pnpm/action-setup@v4
9191 - uses : actions/setup-node@v4
9292 - name : Install Packages
93- run : pnpm install
93+ run : pnpm install --frozen-lockfile
9494 - name : Update fixtures
9595 run : pnpm run update-fixtures
9696 - name : Check changes
@@ -104,7 +104,7 @@ jobs:
104104 - uses : pnpm/action-setup@v4
105105 - uses : actions/setup-node@v4
106106 - name : Install Packages
107- run : pnpm install
107+ run : pnpm install --frozen-lockfile
108108 - name : Test
109109 run : pnpm run cover
110110 - name : Coveralls GitHub Action
Original file line number Diff line number Diff line change 3131 with :
3232 node-version : 24
3333 - name : Install Dependencies
34- run : pnpm install
34+ run : pnpm install --frozen-lockfile
3535
3636 - name : Create Release Pull Request or Publish to npm
3737 id : changesets
Original file line number Diff line number Diff line change 1414 - uses : pnpm/action-setup@v4
1515 - uses : actions/setup-node@v4
1616 - name : Install Packages
17- run : pnpm install
17+ run : pnpm install --frozen-lockfile
1818 - name : Format
1919 run : pnpm run eslint-fix
2020 - name : Commit
Original file line number Diff line number Diff line change 1616 - uses : pnpm/action-setup@v4
1717 - uses : actions/setup-node@v4
1818 - name : Install Packages
19- run : pnpm install
19+ run : pnpm install --frozen-lockfile
2020 - name : Build
2121 run : pnpm run build
2222 - run : pnpx pkg-pr-new publish --compact --json output.json --comment=off
Original file line number Diff line number Diff line change 104104.tern-port
105105
106106# repo
107- /pnpm-lock.yaml
108107/lib
109108/.nyc_output
110109/coverage
Original file line number Diff line number Diff line change 1- package-lock = false
21enable-pre-post-scripts = true
Original file line number Diff line number Diff line change 11tests /fixtures
2+ pnpm-lock.yaml
Original file line number Diff line number Diff line change @@ -46,6 +46,9 @@ export default [
4646 "@typescript-eslint/no-shadow" : "off" ,
4747 "no-warning-comments" : "warn" ,
4848 "jsdoc/require-jsdoc" : "off" ,
49+ // FIXME: Turning off this rule because it causes `TypeError: aVer.compare is not a function` error.
50+ // Most likely the root cause needs to be fixed on the rule side.
51+ "node-dependencies/compat-engines" : "off" ,
4952 complexity : "off" ,
5053
5154 "prettier/prettier" : [
You can’t perform that action at this time.
0 commit comments