Skip to content
Open
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
13 changes: 11 additions & 2 deletions .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,17 @@ jobs:
echo "- Trigger: $EVENT"
} >> $GITHUB_STEP_SUMMARY

- name: Setup Environment
uses: ./.github/actions/setup
- name: Setup Node.js
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version-file: ".nvmrc"
package-manager-cache: false # Prevent cache poisoning issues

- name: Enable corepack
run: corepack enable

- name: Install dependencies
run: yarn install --immutable

- name: Build package
run: yarn build --filter=@openzeppelin/${{ steps.pkg.outputs.name }}
Expand Down
Loading