Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
SunsetTechuila authored Feb 8, 2025
2 parents 7b2b79a + a2eaf00 commit 65872f2
Show file tree
Hide file tree
Showing 17 changed files with 4,394 additions and 7,135 deletions.
3 changes: 1 addition & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ Please fill in this template.

- [ ] Use a meaningful title for the pull request.
- [ ] Use meaningful commit messages.
- [ ] Run `tsc` w/o errors (same as `npm run compile`).
- [ ] Run `tsc` w/o errors (same as `npm run build`).
- [ ] Run `npm run lint` w/o errors.

129 changes: 0 additions & 129 deletions .github/workflows/release.yml

This file was deleted.

20 changes: 13 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@ on:

jobs:
test:
name: Test on node ${{ matrix.node }} and ${{ matrix.os }}
name: Test on ${{ matrix.os }}

runs-on: ${{ matrix.os }}

strategy:
matrix:
node: [14, 16]
os:
- ubuntu-latest
- windows-latest
Expand All @@ -26,11 +25,19 @@ jobs:
- name: Preserve line endings
run: git config --global core.autocrlf false
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
# In CI, this Node is only used to
# - Install dependencies,
# - Run tools like typescript and eslint
# - Execute the runTests function of the @vscode/test-electron package
#
# Therefore, it doesn't have to match the Node version supported by
# VSCode.
node-version: lts/*
cache: npm
- name: Start xvfb
run: |
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
Expand All @@ -41,5 +48,4 @@ jobs:
npm ci
npm test
env:
CI: true
DISPLAY: ":99.0"
DISPLAY: ":99.0"
1 change: 1 addition & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npm run pretest
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.17.0

- **New:** add option to disable the "Generate .editorconfig" context menu entry (by @SunsetTechuila)

## 0.16.7

- **Fix:** keep selection on formatting (by @SunsetTechuila)

## 0.16.6

- **Fix:** apply config to untitled files
Expand Down
9 changes: 9 additions & 0 deletions DEVELOPER.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Notes for Developers

## Publish

To publish a newer version to the Market Place, follow the [VSCode official
instructions][]. Then,
[Open VSX should update automatically](https://github.com/EclipseFdn/open-vsx.org/wiki/Auto-Publishing-Extensions#how-to-auto-publish-an-extension).

[VSCode official instructions]: https://code.visualstudio.com/api/working-with-extensions/publishing-extension
Loading

0 comments on commit 65872f2

Please sign in to comment.