We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc19b5f commit 1755560Copy full SHA for 1755560
.github/workflows/npm-publish.yml
@@ -8,11 +8,14 @@ jobs:
8
build-and-publish:
9
runs-on: ubuntu-latest
10
steps:
11
- - uses: actions/checkout@v1
12
- - uses: actions/setup-node@v4
+ - uses: actions/checkout@v5
+ - name: Install WASM-Pack
13
+ run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
14
+ - uses: actions/setup-node@v6
15
with:
16
node-version: "22.x"
17
registry-url: https://registry.npmjs.org/
18
+ - run: corepack enable # Enable Corepack
19
- run: yarn install --frozen-lockfile --ignore-scripts
20
- run: yarn build:release
21
- run: yarn changeset publish
0 commit comments