Skip to content
Open
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
9 changes: 9 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,15 @@ Closes #
- [ ] `npx tsc --noEmit` passes
- [ ] `npm test` passes (or note any skipped/unrelated failures)

## Dependencies

<!-- If this PR updates or adds any dependencies, document them here for supply-chain security. -->
<!-- Especially important for @stellar/freighter-api and @stellar/stellar-sdk. -->

- [ ] No dependency changes in this PR
- [ ] Dependencies updated; justified in changes above
- [ ] I have reviewed and documented any dependency changes

## Checklist

- [ ] Self-reviewed the diff
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Check dependencies for supply-chain security (Issue #311)
run: node scripts/check-dependencies.mjs
env:
PR_BODY: ${{ github.event.pull_request.body }}
GITHUB_ACTOR: ${{ github.actor }}
- run: npm ci
- run: npm run check:env
- run: npm run lint
Expand Down
Loading