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
5 changes: 5 additions & 0 deletions .github/workflows/check-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,10 @@ jobs:
with:
node-version-file: '.nvmrc'
cache: 'npm'
# registry-url triggers setup-node to create an .npmrc with auth token interpolation,
# required to install private @snyk packages
registry-url: 'https://registry.npmjs.org'
- run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.HAMMERHEAD_NPM_TOKEN }}
- run: npx ts-node ./scripts/check-dependencies.ts
5 changes: 5 additions & 0 deletions .github/workflows/danger-zone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ jobs:
with:
node-version-file: '.nvmrc'
cache: 'npm'
# registry-url triggers setup-node to create an .npmrc with auth token interpolation,
# required to install private @snyk packages
registry-url: 'https://registry.npmjs.org'
- run: npm ci
env:
NODE_AUTH_TOKEN: ${{ secrets.HAMMERHEAD_NPM_TOKEN }}
- run: npx danger ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading