Skip to content

chore(deps): update softprops/action-gh-release digest to 7972168 #36

chore(deps): update softprops/action-gh-release digest to 7972168

chore(deps): update softprops/action-gh-release digest to 7972168 #36

Workflow file for this run

name: Test
on:
push:
branches:
- "*"
pull_request:
types: ["opened", "reopened", "synchronize"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1
- name: Install dependencies
run: dart pub get
- run: dart test
- name: Build
run: scripts/build.sh
shell: bash
- run: npm pack
working-directory: build
- name: Upload
uses: actions/upload-artifact@v4
with:
name: build
path: build
deno-test:
runs-on: ubuntu-latest
needs: build
# panic in deno now
if: false
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: build
path: build
- uses: denoland/setup-deno@v1
name: Install Deno
with:
deno-version: v1.x
- run: deno test test_deno --allow-read
node-test:
runs-on: ubuntu-latest
needs: build
# node support WASM GC in node@22
if: false
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: build
path: build
- uses: actions/setup-node@v4
name: Install Node
with:
node-version-file: ".node-version"
- run: node --test test_node