Skip to content

Commit 766a94e

Browse files
npm: commit lockfile (#4047)
* npm: commit lockfile * update lockfile --------- Co-authored-by: Aman Mahajan <amahajan@stratag.com>
1 parent 53c56ac commit 766a94e

6 files changed

Lines changed: 7191 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
check-latest: true
1919

2020
- name: Install dependencies
21-
run: npm i
21+
run: npm ci
2222

2323
- name: Typecheck
2424
run: node --run typecheck

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
registry-url: 'https://registry.npmjs.org'
2929

3030
- name: Install dependencies
31-
run: npm i
31+
run: npm ci
3232

3333
- name: Typecheck
3434
run: node --run typecheck

.github/workflows/update-screenshots.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ jobs:
3737
GH_TOKEN: ${{ github.token }}
3838

3939
- name: Install dependencies
40-
run: npm i
41-
40+
run: npm ci
4241
- name: Install Playwright Browsers
4342
run: npx playwright install chromium firefox
4443
timeout-minutes: 2

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
/dist
44
/lib
55
/node_modules
6-
/package-lock.json
76

87
npm-debug.log
98
**.orig

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Commands
44

55
```shell
6-
npm install # setup (requires Node.js ≥ 22 for `node --run`)
6+
npm ci # setup
77
node --run build # library → lib/
88
node --run typecheck # tsgo --build
99
node --run eslint # eslint --max-warnings 0

0 commit comments

Comments
 (0)