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
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,10 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install graphviz
npm install
# legacy peer deps because otherwise typescript-eslint hard-complains
# as it can't find a suitable typescript compiler (we're on 6 now,
# ts-eslint isn't yet)
npm install --legacy-peer-deps
npm run build
- name: lint (run on node ${{env.NODE_LATEST}} only)
if: matrix.node-version == env.NODE_LATEST
Expand Down Expand Up @@ -116,7 +119,10 @@ jobs:
- name: install & build
run: |
choco install graphviz
npm install
# legacy peer deps because otherwise typescript-eslint hard-complains
# as it can't find a suitable typescript compiler (we're on 6 now,
# ts-eslint isn't yet)
npm install --legacy-peer-deps
npm run build
- run: npm run depcruise
- run: npx mocha --invert --fgrep "#do-not-run-on-windows"
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ jobs:
with:
node-version: 24.x
registry-url: https://registry.npmjs.org
- run: npm clean-install
# legacy peer deps because otherwise typescript-eslint hard-complains
# as it can't find a suitable typescript compiler (we're on 6 now,
# ts-eslint isn't yet)
- run: npm clean-install --legacy-peer-deps
- name: publish as latest
run: npm publish --provenance --access public
if: github.event.release.prerelease == false
Expand Down
Loading