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 ca23062 commit bddbe16Copy full SHA for bddbe16
.github/workflows/ci.yaml
@@ -97,7 +97,7 @@ jobs:
97
98
typescript:
99
name: TypeScript
100
- runs-on: windows-latest
+ runs-on: ubuntu-latest
101
steps:
102
- name: Checkout repository
103
uses: actions/checkout@v2
@@ -116,8 +116,17 @@ jobs:
116
- run: npm run lint
117
working-directory: ./editors/code
118
119
+ - name: Start xvfb
120
+ run: |
121
+ sudo apt-get install xvfb
122
+ set -e
123
+ /usr/bin/Xvfb :10 -ac >> /tmp/Xvfb.out 2>&1 &
124
+ disown -ar
125
+
126
- run: npm test
127
128
+ env:
129
+ DISPLAY: :10
130
131
- run: npm run package --scripts-prepend-node-path
132
0 commit comments