@@ -70,9 +70,14 @@ jobs:
|
70 | 70 | - name: Environment Information |
71 | 71 | run: npx envinfo |
72 | 72 | - name: Build |
73 | | -run: make -C node build-ci -j4 V=1 CONFIG_FLAGS="--error-on-warn" |
| 73 | +working-directory: node |
| 74 | +run: make build-ci -j4 V=1 CONFIG_FLAGS="--error-on-warn" |
74 | 75 | - name: Test |
75 | | -run: make -C node test-ci -j1 V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9" |
| 76 | +working-directory: node |
| 77 | +run: make test-ci -j1 V=1 TEST_CI_ARGS="-p actions --measure-flakiness 9" |
| 78 | + - name: Ensure running tests did not cause any change in the tree |
| 79 | +working-directory: node |
| 80 | +run: git add -A && git diff --name-only --exit-code --staged |
76 | 81 | - name: Re-run test in a folder whose name contains unusual chars |
77 | 82 | run: | |
78 | 83 | mv node "$DIR" |
|