Skip to content

Commit 5f15a15

Browse files
committed
fix tests
1 parent 4b5be0b commit 5f15a15

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ jobs:
1818
with:
1919
node-version: ${{ matrix.node-version }}
2020
- run: npm install
21+
- run: npm run build
2122
- run: npm test

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ yarn.lock
44
/compose-icon
55
/.build
66
/xcuserdata
7+
.DS_Store

build-swift.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ cd imageComposition
77
xcrun swift build -c release --arch arm64 --arch x86_64 --product compose-icon
88

99
# Copy the built executable to the root directory for easy access
10-
BIN_DIR="$(xcrun swift build -c release --show-bin-path)"
11-
cp "$BIN_DIR/compose-icon" ../compose-icon
10+
cp ".build/apple/Products/Release/compose-icon" ../compose-icon
1211

1312
echo "Swift executable built successfully: compose-icon"

0 commit comments

Comments
 (0)