-
Notifications
You must be signed in to change notification settings - Fork 57
51 lines (42 loc) · 1.03 KB
/
build-npm.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Build npm package
on:
push:
branches:
- main
- dev
tags:
- '**'
pull_request:
branches:
- '**'
jobs:
build_crate:
name: NPM
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: install wasm-pack
run: cargo install wasm-pack
- name: wasm-pack build and pack
run: wasm-pack build --release --target=nodejs wasm && wasm-pack pack wasm
- name: Setup Node 16.x
uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Test wasm
run: node wasm/tests/index.js
- name: Upload npm pkg artifacts
uses: actions/upload-artifact@v3
with:
name: npm-pkg
path: ./wasm/pkg/clvm_wasm-*.tgz
- name: publish to npmjs.com if tagged
if: startsWith(github.event.ref, 'refs/tags')
uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.node_auth_token }}
package: wasm/pkg/package.json