Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 375d04a commit f826c86Copy full SHA for f826c86
.github/workflows/test-macos.yml
@@ -43,6 +43,14 @@ jobs:
43
python-version: ${{ env.PYTHON_VERSION }}
44
- name: Environment Information
45
run: npx envinfo
46
+ # The `npm ci` for this step fails a lot as part of the Test step. Run it
47
+ # now so that we don't have to wait 2 hours for the Build step to pass
48
+ # first before that failure happens. (And if there's something about
49
+ # `make run-ci -j2` that is causing the failure and the failure doesn't
50
+ # happen anymore running this step here first, that's also useful
51
+ # information.)
52
+ - name: tools/doc/node_modules workaround
53
+ run: make tools/doc/node_modules
54
- name: Build
55
run: make build-ci -j2 V=1 CONFIG_FLAGS="--error-on-warn"
56
- name: Test
0 commit comments