Skip to content

Commit 549ee5d

Browse files
authored
Test building BridgeJSTool on macOS on CI (#511)
1 parent e970740 commit 549ee5d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ jobs:
7070
runs-on: ${{ matrix.os }}
7171
steps:
7272
- uses: actions/checkout@v6
73+
- run: swift build --product BridgeJSTool
74+
env:
75+
DEVELOPER_DIR: /Applications/${{ matrix.xcode }}.app/Contents/Developer/
7376
- run: swift build --package-path ./Examples/Basic
7477
env:
7578
DEVELOPER_DIR: /Applications/${{ matrix.xcode }}.app/Contents/Developer/

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ let testingLinkerFlags: [LinkerSetting] = [
2020
let package = Package(
2121
name: "JavaScriptKit",
2222
platforms: [
23-
.macOS(.v10_15),
23+
.macOS(.v13),
2424
.iOS(.v13),
2525
.tvOS(.v13),
2626
.watchOS(.v6),
@@ -37,7 +37,7 @@ let package = Package(
3737
.plugin(name: "BridgeJSCommandPlugin", targets: ["BridgeJSCommandPlugin"]),
3838
],
3939
dependencies: [
40-
.package(url: "https://github.com/swiftlang/swift-syntax", "600.0.0"..<"603.0.0")
40+
.package(url: "https://github.com/swiftlang/swift-syntax", "600.0.0"..<"601.0.0")
4141
],
4242
targets: [
4343
.target(

0 commit comments

Comments
 (0)