We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3add71d commit 0a3ebebCopy full SHA for 0a3ebeb
1 file changed
.github/workflows/build.yml
@@ -15,11 +15,17 @@ jobs:
15
node-version: [16.x]
16
17
steps:
18
- - uses: actions/checkout@v2
+ - name: Checkout
19
+ uses: actions/checkout@v2
20
- name: Use Node.js ${{ matrix.node-version }}
21
uses: actions/setup-node@v1
22
with:
23
node-version: ${{ matrix.node-version }}
- - run: npm ci
24
- - run: npm run build --if-present
25
- - run: xvfb-run --auto-servernum npm test
+ - name: Install regl-scatterplot
+ 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