aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorvsrs <[email protected]>2020-05-23 14:24:21 +0100
committerGitHub <[email protected]>2020-05-23 14:24:21 +0100
commita09b308b4e1d6d1be3ce55b76f33705f9357912b (patch)
tree2157c806091dbd5e363e85a474780d27e9bcaa37 /.github/workflows
parent12ea4a2ba2e85ba39533ccc4197ea7204f7a0e17 (diff)
xvfb-action fix
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ci.yaml6
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