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 1bfd2e3 commit 4d0a3d7Copy full SHA for 4d0a3d7
.github/workflows/main.yml
@@ -0,0 +1,25 @@
1
+name: CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@master
11
+ - name: Start xvfb
12
+ run: |
13
+ set -e
14
+ /usr/bin/Xvfb :10 -ac >> /tmp/Xvfb.out 2>&1 &
15
+ disown -ar
16
+ - name: Use Node.js
17
+ uses: actions/setup-node@master
18
+ with:
19
+ version: 10
20
+ - run: npm install
21
+ - run: npm run compile
22
+ - run: npm run test
23
+ env:
24
+ DISPLAY: :10
25
+ - run: npm run package
0 commit comments