-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (46 loc) · 1.23 KB
/
Copy pathci.yml
File metadata and controls
59 lines (46 loc) · 1.23 KB
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
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
base:
strategy:
matrix:
os: [ubuntu-latest]
node_version: [18, 20]
fail-fast: true
runs-on: ${{ matrix.os }}
name: "Test: node-${{ matrix.node_version }}, ${{ matrix.os }}"
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
targets: wasm32-unknown-unknown
- uses: denoland/setup-deno@v1
with:
deno-version: canary
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Set node ${{ matrix.node_version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node_version }}
cache: pnpm
- name: Install
run: pnpm i --frozen-lockfile
- name: Install wasm-pack and wasm-opt
run: pnpm install -g wasm-pack wasm-opt
- name: Install browser
run: pnpm exec playwright install chromium
- name: Build
run: pnpm run build
- name: Lint
run: pnpm run lint
- name: Test
run: pnpm run test