-
Notifications
You must be signed in to change notification settings - Fork 25
59 lines (47 loc) · 1.55 KB
/
ci.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: ci
on: [push, pull_request]
jobs:
rust:
name: wasmbuild-${{ matrix.os }}
if: |
github.event_name == 'push' ||
!startsWith(github.event.pull_request.head.label, 'denoland:')
runs-on: ${{ matrix.os }}
permissions:
contents: read
id-token: write
timeout-minutes: 30
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-2019]
steps:
- name: clone repository
uses: actions/checkout@v4
- name: Install Rust
uses: dsherret/rust-toolchain-file@v1
- uses: Swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Install deno
uses: denoland/setup-deno@v1
with:
deno-version: 1.x
- name: Check fmt
if: contains(matrix.os, 'ubuntu')
run: deno fmt --check && cargo fmt -- --check
- name: Check lint
if: contains(matrix.os, 'ubuntu')
run: deno lint && cargo clippy
- name: Check Wasm up-to-date
run: deno task build --check
- name: Test
run: deno task test
- name: Get tag version
if: contains(matrix.os, 'ubuntu') && startsWith(github.ref, 'refs/tags/')
id: get_tag_version
run: echo TAG_VERSION=${GITHUB_REF/refs\/tags\//} >> "$GITHUB_OUTPUT"
- name: Publish
if: contains(matrix.os, 'ubuntu') && startsWith(github.ref, 'refs/tags/')
run: |
deno run -A ./scripts/update_deno_json_version.ts ${{steps.get_tag_version.outputs.TAG_VERSION}}
deno publish