Skip to content

Commit d5deb43

Browse files
committed
ci: fix actionlint warnings
1 parent 791db53 commit d5deb43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: |
3232
make codegen
3333
- name: Check if the git repository is clean
34-
run: $(exit $(git status --porcelain --untracked-files=no | head -255 | wc -l)) || (echo "Dirty git tree"; git diff; exit 1)
34+
run: (exit "$(git status --porcelain --untracked-files=no | head -255 | wc -l)") || (echo "Dirty git tree"; git diff; exit 1)
3535

3636
ci:
3737
runs-on: ${{ matrix.config.os }}
@@ -518,7 +518,7 @@ jobs:
518518
$ANDROID_HOME/cmake/3.22.1/bin/cmake -DCMAKE_TOOLCHAIN_FILE=$ANDROID_HOME/ndk/26.0.10792818/build/cmake/android.toolchain.cmake -DCMAKE_BUILD_TYPE=Release -DANDROID_ABI="arm64-v8a" -DANDROID_PLATFORM=android-24 -DQJS_BUILD_LIBC=ON ..
519519
- name: Build android arm64
520520
run: |
521-
$ANDROID_HOME/cmake/3.22.1/bin/cmake --build build --target qjs
521+
"$ANDROID_HOME/cmake/3.22.1/bin/cmake" --build build --target qjs
522522
ls -lh build
523523
524524
ios:

0 commit comments

Comments
 (0)