Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
check-latest: true

- name: Install dependencies
run: npm i
run: npm ci

- name: Typecheck
run: node --run typecheck
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
run: npm i
run: npm ci

- name: Typecheck
run: node --run typecheck
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/update-screenshots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ jobs:
GH_TOKEN: ${{ github.token }}

- name: Install dependencies
run: npm i

run: npm ci
- name: Install Playwright Browsers
run: npx playwright install chromium firefox
timeout-minutes: 2
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
/dist
/lib
/node_modules
/package-lock.json

npm-debug.log
**.orig
Expand Down
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Commands

```shell
npm install # setup (requires Node.js ≥ 22 for `node --run`)
npm ci # setup
node --run build # library → lib/
node --run typecheck # tsgo --build
node --run eslint # eslint --max-warnings 0
Expand Down
Loading