-
Notifications
You must be signed in to change notification settings - Fork 62
65 lines (61 loc) · 1.67 KB
/
wasm.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: WASM
on:
push:
branches:
- main
- master
tags:
- '*'
pull_request:
workflow_dispatch:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
- uses: dtolnay/rust-toolchain@stable
- run: cargo install wasm-pack
- name: Run wasm specific tests
working-directory: tools/garaga_rs
run: wasm-pack test --node --release --no-default-features
build:
name: Build
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Build and check for changes in generated code
working-directory: tools/npm/garaga_rs
run: |
docker compose up --build --exit-code-from app
[[ -z $(git status --porcelain) ]]
- name: Upload package file as artifact
uses: actions/upload-artifact@v4
with:
name: npm-package
path: tools/npm/garaga_rs/*.tgz
if-no-files-found: error
release:
name: Release
runs-on: ubuntu-latest
# Note this will only run when a new tag is pushed
if: "startsWith(github.ref, 'refs/tags/')"
needs: [build, test]
steps:
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
registry-url: 'https://registry.npmjs.org'
- name: Download package file as artifact
uses: actions/download-artifact@v4
with:
name: npm-package
- name: Publish to npm
run: |
npm login
npm publish --access=public *.tgz
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_API_TOKEN }}