8000 wasm veiwer test · gridaco/grida@40f18fa · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[Grida Canvas] Core Graphics - WASM package #208

[Grida Canvas] Core Graphics - WASM package

[Grida Canvas] Core Graphics - WASM package #208

Workflow file for this run

name: test packages
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Run Tests
run: pnpm turbo test --filter='!./crates/*'
0