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 91c9c0b commit 194cb75Copy full SHA for 194cb75
.github/workflows/ci.yml
@@ -5,10 +5,7 @@ on:
5
6
jobs:
7
build:
8
- strategy:
9
- matrix:
10
- os: [macos-latest, ubuntu-latest, windows-latest]
11
- runs-on: ${{ matrix.os }}
+ runs-on: ubuntu-latest
12
steps:
13
- name: Checkout
14
uses: actions/checkout@v3
@@ -17,12 +14,5 @@ jobs:
17
with:
18
15
node-version: 16.x
19
16
- run: npm install
20
- - run: xvfb-run -a npm test
21
- if: runner.os == 'Linux'
22
- - run: npm test
23
- if: runner.os != 'Linux'
24
- - name: Publish
25
- if: success() && startsWith(github.ref, 'refs/tags/') && matrix.os == 'ubuntu-latest'
26
- run: npm run deploy
27
- env:
28
- VSCE_PAT: ${{ secrets.VSCE_PAT }}
+ - name: Compile
+ run: npm run compile
0 commit comments