Skip to content

Commit 0a3ebeb

Browse files
committed
Test Gabriel's xvfb
1 parent 3add71d commit 0a3ebeb

1 file changed

Lines changed: 10 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,17 @@ jobs:
1515
node-version: [16.x]
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- name: Checkout
19+
uses: actions/checkout@v2
1920
- name: Use Node.js ${{ matrix.node-version }}
2021
uses: actions/setup-node@v1
2122
with:
2223
node-version: ${{ matrix.node-version }}
23-
- run: npm ci
24-
- run: npm run build --if-present
25-
- run: xvfb-run --auto-servernum npm test
24+
- name: Install regl-scatterplot
25+
run: npm ci
26+
- name: Build regl-scatterplot
27+
run: npm run build --if-present
28+
- name: Run tests
29+
uses: GabrielBB/xvfb-action@v1
30+
with:
31+
run: npm test

0 commit comments

Comments
 (0)