Skip to content

Commit 4932194

Browse files
authored
Merge pull request #518 from jneira/path-fixes
Fixes related with paths
2 parents 8e452db + 4b8f953 commit 4932194

File tree

7 files changed

+306
-239
lines changed

7 files changed

+306
-239
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v2
1111
- uses: actions/setup-node@v1
1212
with:
13-
node-version: 12
13+
node-version: 14
1414
- run: npm ci
1515
- name: Publish to Visual Studio Marketplace
1616
id: publishToVSMarketplace

.github/workflows/test.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install Node.js
2424
uses: actions/setup-node@v1
2525
with:
26-
node-version: 10.x
26+
node-version: 14
2727
- name: Ensure there is a supported ghc versions
2828
uses: haskell/actions/setup@v1
2929
with:
@@ -40,4 +40,12 @@ jobs:
4040
with:
4141
name: extension-${{ matrix.os }}.log
4242
path: test-workspace/hls.log
43-
43+
- name: Package tested extension
44+
if: runner.os == 'Linux'
45+
run: npx vsce package
46+
- name: Upload extension vsix to workflow artifacts
47+
if: runner.os == 'Linux'
48+
uses: actions/upload-artifact@v2
49+
with:
50+
name: haskell-${{ github.sha }}.vsix
51+
path: haskell-*.vsix

0 commit comments

Comments
 (0)