We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca00899 commit b44d0daCopy full SHA for b44d0da
1 file changed
.github/workflows/release.yml
@@ -4,24 +4,21 @@ on:
4
push:
5
tags:
6
- "v*.*.*"
7
- workflow_run:
8
- workflows: [Build]
9
- types:
10
- - completed
11
12
jobs:
13
build:
14
runs-on: ubuntu-latest
15
steps:
16
- name: Checkout
17
uses: actions/checkout@v2
18
- - uses: actions/setup-node@v3
+ - name: Setup node
+ uses: actions/setup-node@v3
19
with:
20
node-version: "14"
21
- name: Install dependencies
22
run: npm install --no-optional
23
- name: Run tests
24
- run: npm test
+ run: xvfb-run -a npm test
25
- name: Package vsce
26
run: npm run package
27
- name: Release
0 commit comments