deno.land / std@0.166.0 / .github / workflows / 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
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
210
211
212
213
214
215
216
217
218
219
220
name: ci
on: push: branches: [main] pull_request: branches: [main]
jobs: test: runs-on: ${{ matrix.os }} timeout-minutes: 30 strategy: fail-fast: false matrix: deno: [canary] os: - ${{ github.repository_owner == 'denoland' && 'ubuntu-20.04-xl' || 'ubuntu-20.04' }} - ${{ github.repository_owner == 'denoland' && 'windows-2019-xl' || 'windows-2019' }} - macOS-latest
steps: - name: Clone repository uses: actions/checkout@v3 with: submodules: true
- name: Set up Deno uses: denoland/setup-deno@v1 with: deno-version: ${{ matrix.deno }}
- name: Run tests canary run: deno task test
- name: Type check browser compatible modules shell: bash run: deno task test:browser
- name: Generate lcov shell: bash # excludes tests, testdata, and generated sources from coverage report run: | deno coverage ./cov/ --lcov --exclude="test\\.(ts|js)|wasm\\.js|testdata|node/_tools|node/_module/cjs|node_modules" > cov.lcov
- name: Upload coverage uses: codecov/codecov-action@v3 if: | !startsWith(matrix.os, 'ubuntu') with: name: ${{ matrix.os }}-${{ matrix.deno }} files: cov.lcov
- name: Remove coverage report shell: bash if: | !startsWith(matrix.os, 'ubuntu') run: | rm -rf ./cov/ rm cov.lcov
- name: Release if version change if: | startsWith(matrix.os, 'ubuntu') && github.repository == 'denoland/deno_std' && github.ref == 'refs/heads/main' shell: bash env: GITHUB_TOKEN: ${{ secrets.DENOBOT_PAT }} run: ./_tools/release/03_release.ts
node: runs-on: ${{ matrix.os }} timeout-minutes: 30 strategy: fail-fast: false matrix: deno: [canary] os: - ${{ github.repository_owner == 'denoland' && 'ubuntu-20.04-xl' || 'ubuntu-20.04' }} - ${{ github.repository_owner == 'denoland' && 'windows-2019-xl' || 'windows-2019' }} - macOS-latest
steps: - name: Clone repository uses: actions/checkout@v3 with: submodules: true persist-credentials: false
- name: Set up Deno uses: denoland/setup-deno@v1 with: deno-version: ${{ matrix.deno }}
- name: Type check node modules shell: bash run: deno task node:check-unstable-api
- name: Unit test node/ run: deno task node:unit
- name: Run Node tests canary run: deno task node:test env: DENO_NODE_COMPAT_URL: file:///${{ github.workspace }}/
lint: runs-on: ${{ github.repository_owner == 'denoland' && 'ubuntu-20.04-xl' || 'ubuntu-20.04' }} steps: - name: Clone repository uses: actions/checkout@v3 with: submodules: false persist-credentials: false
- name: Set up Deno uses: denoland/setup-deno@v1
- name: Format run: deno fmt --check
- name: Lint run: deno lint
- name: Check circular dependencies run: "deno task node:lint-circular-deps"
- name: Check License headers run: "deno task lint:licence-headers"
- name: Check Deprecations run: "deno task lint:deprecations"
- name: Check Import paths in Docs run: "deno task lint:doc-imports"
- name: Check non-test assertions run: deno task lint:check-assertions
crypto-wasm: name: "crypto/_wasm" runs-on: ${{ github.repository_owner == 'denoland' && 'ubuntu-20.04-xl' || 'ubuntu-20.04' }} steps: - name: Clone repository uses: actions/checkout@v3 with: # required to check for changes fetch-depth: 2 submodules: false persist-credentials: false
- name: Check for changes to crypto/_wasm id: source run: |- set -o errexit shopt -s inherit_errexit declare modifications="$(git diff --name-only HEAD~ -- ./crypto/_wasm)" declare modified="$([[ "$modifications" ]] && echo true || echo false)" echo "modified=$modified" >> $GITHUB_OUTPUT echo "Wasm crypto source modified in this commit? $modified" echo "$modifications"
- name: Set up Deno uses: denoland/setup-deno@v1 if: success() && steps.source.outputs.modified == 'true'
- name: Set up Rust uses: hecrj/setup-rust-action@v1 if: success() && steps.source.outputs.modified == 'true' with: # This must match the version in crypto/_wasm/rust-toolchain.toml rust-version: 1.65.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 build:crypto --check
varint-wasm: name: "varint/_wasm" runs-on: ${{ github.repository_owner == 'denoland' && 'ubuntu-20.04-xl' || 'ubuntu-20.04' }} steps: - name: Clone repository uses: actions/checkout@v3 with: # required to check for changes fetch-depth: 2 submodules: false persist-credentials: false
- name: Check for changes to varint/_wasm id: source run: |- set -o errexit shopt -s inherit_errexit declare modifications="$(git diff --name-only HEAD~ -- ./encoding/varint/_wasm)" declare modified="$([[ "$modifications" ]] && echo true || echo false)" echo "modified=$modified" >> $GITHUB_OUTPUT echo "Wasm varint source modified in this commit? $modified" echo "$modifications"
- name: Set up Deno uses: denoland/setup-deno@v1 if: success() && steps.source.outputs.modified == 'true'
- name: Set up Rust uses: hecrj/setup-rust-action@v1 if: success() && steps.source.outputs.modified == 'true' with: # This must match the versions in encoding/varint/_wasm/rust-toolchain.toml rust-version: 1.65.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 build:varint --check
std

Version Info

Tagged at
a year ago