Skip to content

Commit 6e20127

Browse files
authored
Merge branch 'codefori:main' into fix/token_tests
2 parents dc300c7 + 083ba23 commit 6e20127

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+3433
-2901
lines changed

.eslintrc.json

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
node-version: '20'
1515
- uses: actions/checkout@v2
1616

17-
- run: npm install
17+
- run: npm ci
1818

1919
- run: npm install -g vsce ovsx
2020

.github/workflows/webpack_ci.yaml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name: NodeJS with Webpack
22

3-
on:
4-
push:
5-
branches: [ "main" ]
6-
pull_request:
7-
branches: [ "main" ]
3+
on: pull_request
84

95
jobs:
106
build:
@@ -22,9 +18,14 @@ jobs:
2218
with:
2319
node-version: ${{ matrix.node-version }}
2420

21+
- name: Install dependencies
22+
run: npm ci
23+
24+
- name: Type check
25+
run: npm run typings
26+
2527
- name: Build and package
2628
run: |
27-
npm install
2829
npx webpack
2930
npm install -g vsce
3031
vsce package
@@ -49,6 +50,7 @@ jobs:
4950
body-includes: new build is available
5051

5152
- name: Post comment
53+
continue-on-error: true
5254
if: steps.fc.outputs.comment-id == ''
5355
uses: actions/github-script@v5
5456
with:
@@ -61,6 +63,7 @@ jobs:
6163
})
6264
6365
- name: Update comment
66+
continue-on-error: true
6467
if: steps.fc.outputs.comment-id != ''
6568
uses: peter-evans/create-or-update-comment@v1
6669
with:

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ node_modules
22
.vscode-test/
33
*.vsix
44
.DS_Store
5-
dist
6-
types
5+
dist

.vscodeignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,5 @@ vsc-extension-quickstart.md
1010
media/main.png
1111
node_modules
1212
src
13-
types
1413
.github
1514
src/dsc.ts

media/context.png

28.9 KB
Loading

0 commit comments

Comments
 (0)