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
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ jobs:
node-version: '22'
cache: npm

# Make sure we can install latest so we don't get nasty surprises on main post-merge.
- name: Update npm
run: |
# Temporary fix for https://github.com/npm/cli/issues/9151
npm install -g npm@~11.11.0
npm install -g npm@latest

- name: Run eslint
run: |
npm ci
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ jobs:

# Ensure npm 11.5.1 or later is installed for trusted publishing support
- name: Update npm
run: npm install -g npm@latest
run: |
# Temporary fix for https://github.com/npm/cli/issues/9151
npm install -g npm@~11.11.0
npm install -g npm@latest

- run: npm ci
- run: npm publish --access public