-
Notifications
You must be signed in to change notification settings - Fork 667
209 lines (178 loc) · 5.14 KB
/
ci.yml
File metadata and controls
209 lines (178 loc) · 5.14 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
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
name: ci
permissions:
contents: write
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
permissions:
id-token: write # Required for deployctl
strategy:
fail-fast: false
matrix:
deno:
- v1.x
- v2.x
- canary
os:
- ubuntu-latest
- windows-latest
- macOS-latest
steps:
- name: Clone repository
uses: actions/checkout@v6
- name: Set up Deno
uses: denoland/setup-deno@v2
with:
deno-version: ${{ matrix.deno }}
cache: true
- name: Run tests
run: |
deno task test
deno task test:with-unsafe-proto
- name: Run timezone-dependent tests
run: |
TZ=Australia/Sydney deno test datetime
TZ=Europe/London deno test datetime
TZ=America/Toronto deno test datetime
if: matrix.os == 'ubuntu-latest'
- name: Type check browser compatible modules
run: deno task test:browser
if: matrix.deno == 'v2.x' && matrix.os == 'ubuntu-latest'
- name: Publish dry run
run: deno publish --dry-run
if: matrix.deno == 'canary' && matrix.os == 'ubuntu-latest'
- name: Upload coverage
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./coverage/lcov.info
name: ${{ matrix.os }}-${{ matrix.deno }}
- name: Upload coverage to Deploy
uses: denoland/deployctl@v1
with:
project: std-coverage
root: coverage/html
entrypoint: jsr:@std/http@1/file-server
if: matrix.deno == 'canary' && matrix.os == 'ubuntu-latest' && github.event_name == 'push'
test-node:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
node:
# TODO(kt3k): change this back to latest when the issue below resolved
# https://github.com/nodejs/node/issues/58826
- 24.2.0
os:
- ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v6
- name: Set up Deno
uses: denoland/setup-deno@v2
with:
cache: true
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
- name: Run tests
run: deno task test:node
test-bun:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
bun:
- latest
os:
- ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v6
- name: Set up Deno
uses: denoland/setup-deno@v2
with:
cache: true
- name: Set up Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: ${{ matrix.bun }}
- name: Run tests
run: deno task test:bun
lint:
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
steps:
- name: Clone repository
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Set up Deno
uses: denoland/setup-deno@v2
with:
deno-version: canary
cache: true
- name: Format
run: deno fmt --check
- name: Lint
run: deno task lint
- name: Spell-check
uses: crate-ci/typos@master
if: matrix.os == 'ubuntu-latest'
with:
config: ./.github/typos.toml
wasm:
name: wasm
runs-on: ubuntu-latest
strategy:
matrix:
module: [crypto/_wasm]
steps:
- name: Clone repository
uses: actions/checkout@v6
with:
# required to check for changes
fetch-depth: 2
persist-credentials: false
- name: Check for changes
id: source
run: |-
set -o errexit
shopt -s inherit_errexit
declare modifications="$(git diff --name-only HEAD~ -- ${{ matrix.module }})"
declare modified="$([[ "$modifications" ]] && echo true || echo false)"
echo "modified=$modified" >> $GITHUB_OUTPUT
echo "${{ matrix.module }} Wasm source modified in this commit? $modified"
echo "$modifications"
- name: Set up Deno
uses: denoland/setup-deno@v2
if: success() && steps.source.outputs.modified == 'true'
with:
cache: true
- name: Set up Rust
uses: hecrj/setup-rust-action@v2
if: success() && steps.source.outputs.modified == 'true'
with:
# This must match the version in _wasm/rust-toolchain.toml of the module folder
rust-version: 1.85.0
targets: wasm32-unknown-unknown
components: rustfmt
- name: Rebuild Wasm and verify it hasn't changed
if: success() && steps.source.outputs.modified == 'true'
run: deno task --cwd ${{ matrix.module }} --config deno.json wasmbuild --check