2024-04-14 13:55:35 +00:00
|
|
|
name: Test All
|
2022-08-04 17:49:18 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2023-11-02 06:20:34 +00:00
|
|
|
branches: ["main"]
|
2022-08-04 17:49:18 +00:00
|
|
|
pull_request:
|
2024-09-12 12:07:57 +00:00
|
|
|
branches: ["main", "dev", "feat-gc"]
|
2024-01-12 08:47:44 +00:00
|
|
|
types: [opened, synchronize, reopened, ready_for_review]
|
2022-08-04 17:49:18 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2024-02-15 05:16:03 +00:00
|
|
|
runs-on: macos-14
|
2024-01-12 08:47:44 +00:00
|
|
|
if: github.event.pull_request.draft == false
|
2022-08-04 17:49:18 +00:00
|
|
|
steps:
|
2023-11-02 06:20:34 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: jetli/wasm-pack-action@v0.4.0
|
|
|
|
with:
|
|
|
|
# Optional version of wasm-pack to install(eg. 'v0.9.1', 'latest')
|
|
|
|
version: "latest"
|
|
|
|
- uses: denoland/setup-deno@v1
|
|
|
|
with:
|
2024-10-11 15:36:04 +00:00
|
|
|
deno-version: v2.x
|
2023-11-02 06:20:34 +00:00
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
2024-07-04 15:41:53 +00:00
|
|
|
node-version: 20
|
2024-07-12 08:15:54 +00:00
|
|
|
- uses: pnpm/action-setup@v4
|
2023-11-02 06:20:34 +00:00
|
|
|
with:
|
|
|
|
version: 8
|
|
|
|
- name: Install nextest
|
|
|
|
uses: taiki-e/install-action@v1
|
|
|
|
with:
|
|
|
|
tool: nextest
|
|
|
|
|
|
|
|
- run: rustup toolchain install stable --profile minimal
|
|
|
|
- run: rustup target add wasm32-unknown-unknown
|
|
|
|
- uses: jetli/wasm-bindgen-action@v0.2.0
|
|
|
|
with:
|
2024-05-09 07:22:34 +00:00
|
|
|
version: "0.2.92"
|
2023-11-02 06:20:34 +00:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2024-10-03 13:09:18 +00:00
|
|
|
- name: Check
|
2024-10-05 06:35:56 +00:00
|
|
|
run: cargo clippy --all-features -- -Dwarnings
|
2023-11-02 06:20:34 +00:00
|
|
|
- name: Run rust tests
|
2024-10-03 13:09:18 +00:00
|
|
|
run: deno task test-all
|