File tree Expand file tree Collapse file tree 4 files changed +394
-2
lines changed Expand file tree Collapse file tree 4 files changed +394
-2
lines changed Original file line number Diff line number Diff line change 14
14
wasm-tools_version : 1.0.28
15
15
16
16
jobs :
17
+
18
+ check-changelog :
19
+ if : github.ref != 'refs/heads/main'
20
+ runs-on : ubuntu-latest
21
+ steps :
22
+ - uses : actions/checkout@v3
23
+ - uses : actions/setup-node@v3
24
+ with :
25
+ node-version : ${{ matrix.node-version }}
26
+ cache : ' yarn'
27
+ - run : yarn install --immutable
28
+ - run : npm run check-changelog
29
+
17
30
build :
18
31
name : Build
19
32
needs : [ensure_cargo_installs]
@@ -150,6 +163,7 @@ jobs:
150
163
- uses : actions/setup-node@v3
151
164
with :
152
165
node-version : 19
166
+ cache : ' yarn'
153
167
154
168
- name : Download Engine
155
169
uses : actions/download-artifact@v3
@@ -246,6 +260,7 @@ jobs:
246
260
- uses : actions/setup-node@v3
247
261
with :
248
262
node-version : 19
263
+ cache : ' yarn'
249
264
250
265
- name : Set up Fastly CLI
251
266
uses : fastly/compute-actions/setup@v4
@@ -342,6 +357,7 @@ jobs:
342
357
- uses : actions/setup-node@v3
343
358
with :
344
359
node-version : ${{ matrix.node-version }}
360
+ cache : ' yarn'
345
361
- name : Download Engine
346
362
uses : actions/download-artifact@v3
347
363
with :
Original file line number Diff line number Diff line change @@ -22,3 +22,4 @@ docs-app/pkg/*.tar.gz
22
22
c-dependencies /js-compute-runtime /fastly-world /fastly_world_component_type.o
23
23
24
24
* .a
25
+ yarn-error.log
Original file line number Diff line number Diff line change 32
32
"test:cli" : " brittle --bail integration-tests/cli/**.test.js" ,
33
33
"test:types" : " tsd" ,
34
34
"build" : " make -j8 -C c-dependencies/js-compute-runtime && cp c-dependencies/js-compute-runtime/*.wasm c-dependencies/js-compute-runtime/fastly.wit ." ,
35
- "build:debug" : " DEBUG=true make -j8 -C c-dependencies/js-compute-runtime && cp c-dependencies/js-compute-runtime/*.wasm c-dependencies/js-compute-runtime/fastly.wit ."
35
+ "build:debug" : " DEBUG=true make -j8 -C c-dependencies/js-compute-runtime && cp c-dependencies/js-compute-runtime/*.wasm c-dependencies/js-compute-runtime/fastly.wit ." ,
36
+ "check-changelog" : " cae-release-notes-format-checker CHANGELOG.md"
36
37
},
37
38
"devDependencies" : {
38
39
"@jakechampion/cli-testing-library" : " ^1.0.0" ,
39
40
"brittle" : " ^3.1.1" ,
41
+ "cae-release-notes-format-checker" : " ^1.0.0" ,
40
42
"eslint" : " ^8.28.0" ,
41
43
"get-bin-path" : " ^7.2.1" ,
42
44
"tsd" : " ^0.25.0" ,
You can’t perform that action at this time.
0 commit comments