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
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Install workspace dependencies
run: npm ci --ignore-scripts

- name: Run CLI tests
run: npm test

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ jobs:
- name: Update npm for trusted publishing
run: npm install --global npm@latest

- name: Install workspace dependencies
run: npm ci --ignore-scripts

- name: Verify tag matches package version
shell: bash
run: |
Expand Down
Loading