Skip to content

build(deps): bump braces from 3.0.2 to 3.0.3 in /sample/browser #118

build(deps): bump braces from 3.0.2 to 3.0.3 in /sample/browser

build(deps): bump braces from 3.0.2 to 3.0.3 in /sample/browser #118

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request: {}
jobs:
build:
name: Build WASM
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install WASM-Pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
- uses: actions/setup-node@v6
with:
node-version: "22.x"
- run: corepack enable
- run: yarn install --immutable
- run: yarn build:release
- uses: actions/upload-artifact@v4
with:
name: wasm-build
path: lib/
retention-days: 1
js_test:
name: Test on Node ${{ matrix.node-version }} (${{ matrix.os }})
needs: build
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [22.x, 24.x, 25.x]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- run: corepack enable
- run: yarn install --immutable
- uses: actions/download-artifact@v4
with:
name: wasm-build
path: lib/
- run: yarn test:wasm