Skip to content

Commit 94ce638

Browse files
committed
Add changelog
1 parent ad818a6 commit 94ce638

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.github/workflows/local-test.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Local Testing (for act)
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
test-local:
8+
name: Local Test
9+
runs-on: ubuntu-latest
10+
container:
11+
image: swift:5.10-jammy
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v4
15+
16+
- name: Setup Linux Environment
17+
run: |
18+
export NODE_VERSION=v20.19.0
19+
export NODE_PATH=/usr/local/nvm/versions/node/v20.19.0/bin
20+
export NVM_DIR=/usr/local/nvm
21+
. .github/workflows/scripts/setup-linux.sh
22+
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
23+
24+
- name: Run Tests
25+
run: |
26+
export NODE_VERSION=v20.19.0
27+
export NODE_PATH=/usr/local/nvm/versions/node/v20.19.0/bin
28+
export NVM_DIR=/usr/local/nvm
29+
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
30+
export CI=1
31+
export FAST_TEST_RUN=1
32+
./scripts/test.sh

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
- Fix the wrong toolchain being shown as selected when using swiftly v1.0.1 ([#2014](https://github.com/swiftlang/vscode-swift/pull/2014))
88
- Fix extension displaying SwiftPM's project view and automatic build tasks even when `disableSwiftPMIntegration` was true ([#2011](https://github.com/swiftlang/vscode-swift/pull/2011))
9+
- Validate extension settings and warn if they are invalid ([#2016](https://github.com/swiftlang/vscode-swift/pull/2016))
910

1011
## 2.14.3 - 2025-12-15
1112

0 commit comments

Comments
 (0)