Skip to content

Commit 9e5cc28

Browse files
committed
Fixes
1 parent f514272 commit 9e5cc28

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,19 @@
11
on:
2-
push:
3-
branches:
4-
- master
52
release:
63
types:
74
- created
85

96
jobs:
107
build:
11-
strategy:
12-
matrix:
13-
os: [macos-latest, ubuntu-latest, windows-latest]
14-
runs-on: ${{ matrix.os }}
8+
runs-on: ubuntu-latest
159
steps:
1610
- name: Checkout
1711
uses: actions/checkout@v2
1812
- name: Install Node.js
1913
uses: actions/setup-node@v1
2014
with:
2115
node-version: 10.x
22-
- run: npm install
23-
- run: xvfb-run -a npm test
24-
if: runner.os == 'Linux'
25-
- run: npm test
26-
if: runner.os != 'Linux'
2716
- name: Publish
28-
if: startsWith(github.ref, 'refs/tags/releases/') && runner.os == 'Linux'
2917
run: npm run deploy
3018
env:
3119
VSCE_PAT: ${{ secrets.VSCE_PAT }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-html-css",
33
"displayName": "HTML CSS Support",
44
"description": "CSS support for HTML documents",
5-
"version": "0.9.2",
5+
"version": "0.9.3",
66
"publisher": "ecmel",
77
"license": "MIT",
88
"homepage": "https://github.com/ecmel/vscode-html-css",

0 commit comments

Comments
 (0)