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: 1 addition & 2 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,11 @@ description: Install and cache npm and node_modules to reuse them in workflows a
runs:
using: composite
steps:
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
cache: "npm"
node-version: 20.19.x
registry-url: "https://registry.npmjs.org"
scope: '@zeroledger'
always-auth: 'true'
- run: npm ci
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/quality-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: ./.github/actions/setup
- run: npm run typecheck;
- run: npm run lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
publish-pkg:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: ./.github/actions/setup
- run: npm run build
- run: npm publish
Expand Down