forked from rolldown/rolldown
-
Notifications
You must be signed in to change notification settings - Fork 0
164 lines (143 loc) · 4.7 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
name: CI
# Jobs in this workflow are all required run successfully before the PR can be merged. This is enforced by using github status checks.
# What's github status check: https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/collaborating-on-repositories-with-code-quality-features/about-status-checks
on:
pull_request:
types: [opened, synchronize]
merge_group:
push:
branches:
- main
- 'renovate/**' # For renovate bot "automerge": true
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: ${{ github.ref_name != 'main' }}
jobs:
# JOB to run change detection
changes: # https://github.com/dorny/paths-filter
name: Detect Changes
runs-on: ubuntu-latest
permissions:
pull-requests: read
outputs:
rust-changes: ${{ (steps.filter.outputs.rust-changes == 'true') || (github.ref_name == 'main') }}
node-changes: ${{ (steps.filter.outputs.node-changes == 'true') || (github.ref_name == 'main') }}
steps:
# For pull requests it's not necessary to checkout the code
- uses: actions/checkout@v4 #Fix https://github.com/dorny/paths-filter/issues/212
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
rust-changes: &rust-changes
- '.github/workflows/**'
- 'crates/**'
- 'Cargo.toml'
- 'Cargo.lock'
- 'rust-toolchain.toml'
- 'deny.toml'
- '.gitattributes'
node-changes:
- *rust-changes
- 'packages/**'
- 'examples/**'
- 'scripts/**'
- 'package.json'
- 'pnpm-lock.yaml'
- 'pnpm-workspace.yaml'
- name: Show outputs
run: |
echo "Rust changes: ${{ (steps.filter.outputs.rust-changes == 'true') || (github.ref_name == 'main') }}"
echo "Node changes: ${{ (steps.filter.outputs.node-changes == 'true') || (github.ref_name == 'main') }}"
cargo-deny:
name: Cargo Deny
needs: changes
if: ${{ needs.changes.outputs.rust-changes == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: filter
with:
filters: |
src:
- 'Cargo.lock'
- 'deny.toml'
- '.github/workflows/ci.yml'
- name: Install cargo-deny
if: steps.filter.outputs.src == 'true'
uses: ./.github/actions/setup-rust
with:
restore-cache: false
tools: cargo-deny
- if: steps.filter.outputs.src == 'true'
run: cargo deny check
rust-validation:
name: Rust Validation
needs: changes
if: ${{ needs.changes.outputs.rust-changes == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Rust
uses: ./.github/actions/setup-rust
with:
tools: just, taplo-cli, cargo-shear
cache-key: debug-build
components: clippy rustfmt
- name: Lint
run: just lint-rust
cargo-test:
needs: changes
strategy:
matrix:
target: [ubuntu-latest, macos-latest, windows-latest]
uses: ./.github/workflows/reusable-cargo-test.yml
with:
os: ${{ matrix.target }}
changed: ${{ needs.changes.outputs.rust-changes == 'true' }}
node-test:
needs: changes
strategy:
matrix:
target: [ubuntu-latest, macos-latest, windows-latest]
uses: ./.github/workflows/reusable-node-test.yml
with:
os: ${{ matrix.target }}
changed: ${{ needs.changes.outputs.node-changes == 'true' }}
wasi-test:
needs: changes
strategy:
matrix:
target: [ubuntu-latest, macos-latest, windows-latest]
uses: ./.github/workflows/reusable-wasi-test.yml
with:
os: ${{ matrix.target }}
changed: ${{ needs.changes.outputs.node-changes == 'true' }}
node-validation:
name: Node Validation
needs: changes
if: ${{ needs.changes.outputs.node-changes == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: ./.github/actions/setup-node
- name: Lint Code
run: pnpm lint-code
repo-validation:
name: Repo Validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: ./.github/actions/setup-node
- name: Lint Filename
run: pnpm lint-filename
- name: Lint Spell
run: pnpm lint-spell
- name: Lint Prettier
run: pnpm lint-prettier
- name: Lint Toml
run: pnpm lint-toml