diff options
-rw-r--r-- | .github/workflows/ci.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index af71a3d54..e3e5a2c57 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml | |||
@@ -110,7 +110,7 @@ jobs: | |||
110 | - run: npm ci | 110 | - run: npm ci |
111 | working-directory: ./editors/code | 111 | working-directory: ./editors/code |
112 | 112 | ||
113 | - run: npm audit # || { sleep 10 && npm audit; } || { sleep 30 && npm audit; } | 113 | - run: npm audit || { sleep 10 && npm audit; } || { sleep 30 && npm audit; } |
114 | working-directory: ./editors/code | 114 | working-directory: ./editors/code |
115 | 115 | ||
116 | - run: npm run lint | 116 | - run: npm run lint |
@@ -119,8 +119,8 @@ jobs: | |||
119 | - name: Run vscode tests | 119 | - name: Run vscode tests |
120 | uses: GabrielBB/[email protected] | 120 | uses: GabrielBB/[email protected] |
121 | with: | 121 | with: |
122 | run: npm test | 122 | run: npm --prefix ./editors/code test |
123 | working-directory: ./editors/code | 123 | # working-directory: ./editors/code # does not work: https://github.com/GabrielBB/xvfb-action/issues/8 |
124 | 124 | ||
125 | - run: npm run package --scripts-prepend-node-path | 125 | - run: npm run package --scripts-prepend-node-path |
126 | working-directory: ./editors/code | 126 | working-directory: ./editors/code |