-
-
Notifications
You must be signed in to change notification settings - Fork 4
41 lines (31 loc) · 805 Bytes
/
deno.yml
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
name: Deno
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Install wasm-bindgen
run: cargo install wasm-bindgen-cli
- name: Add wasm target
run: rustup target add wasm32-unknown-unknown
- name: Pin wasm-bindgen version
run: cargo update -p wasm-bindgen --precise 0.2.95
- name: Run tests
run: ./scripts/deno_test.sh