-
Notifications
You must be signed in to change notification settings - Fork 73
108 lines (87 loc) · 2.61 KB
/
ci.yml
File metadata and controls
108 lines (87 loc) · 2.61 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
name: ci
on: [push, pull_request]
jobs:
rust:
name: deno_doc-${{ matrix.os }}
if: |
github.event_name == 'push' ||
!startsWith(github.event.pull_request.head.label, 'denoland:')
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
matrix:
os: [macOS-latest, ubuntu-latest, windows-latest]
defaults:
run:
shell: bash
env:
CARGO_INCREMENTAL: 0
GH_ACTIONS: 1
RUST_BACKTRACE: full
RUSTFLAGS: -D warnings
steps:
- name: Clone repository
uses: actions/checkout@v5
with:
submodules: true
- uses: dsherret/rust-toolchain-file@v1
- uses: Swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Format
if: contains(matrix.os, 'ubuntu')
run: cargo fmt -- --check
- name: Lint
if: contains(matrix.os, 'ubuntu')
run: cargo clippy --all-targets --locked -- -D clippy::all
- name: Build (Rust)
run: cargo build --locked --all-targets
- name: Test
run: cargo test --locked --all-targets
# - name: Install cargo-llvm-cov
# if: contains(matrix.os, 'ubuntu')
# uses: taiki-e/install-action@cargo-llvm-cov
# - name: Generate code coverage
# if: contains(matrix.os, 'ubuntu')
# run: cargo llvm-cov --lcov --output-path lcov.info
# - name: Upload coverage to Codecov
# if: contains(matrix.os, 'ubuntu')
# uses: codecov/codecov-action@v3
# with:
# files: lcov.info
# fail_ci_if_error: true
# token: ${{ secrets.CODECOV_TOKEN }}
javascript:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
timeout-minutes: 30
steps:
- name: Clone repository
uses: actions/checkout@v5
with:
submodules: true
- 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@v2
with:
deno-version: canary
cache: true
- name: Format
run: deno fmt --check
- name: Build (Wasm)
run: deno task build
- name: Lint
run: deno lint
- name: Tailwind Check
run: |
deno task tailwind
git diff --exit-code
- name: Test
run: deno test --allow-read --allow-net --allow-env --allow-write
- name: Publish to JSR
run: cd js && deno run -A jsr:@david/publish-on-tag@0.1.3 --allow-dirty