Skip to content

Commit 9f07af9

Browse files
mochaaPsaghul
authored andcommittedMar 8, 2025
ci: fix actionlint warnings
1 parent 03386b5 commit 9f07af9

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed
 

‎.github/workflows/ci.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -585,13 +585,13 @@ jobs:
585585
make amalgam
586586
- name: build amalgamation
587587
run: |
588-
unzip -d $RUNNER_TEMP build/quickjs-amalgam.zip
589-
cc -Wall -I. -o $RUNNER_TEMP/run-test262.o -c run-test262.c
590-
cc -Wall -I/ -DQJS_BUILD_LIBC -o $RUNNER_TEMP/quickjs-amalgam.o -c $RUNNER_TEMP/quickjs-amalgam.c
591-
cc -o $RUNNER_TEMP/run-test262 $RUNNER_TEMP/run-test262.o $RUNNER_TEMP/quickjs-amalgam.o -lm
588+
unzip -d "$RUNNER_TEMP" build/quickjs-amalgam.zip
589+
cc -Wall -I. -o "$RUNNER_TEMP/run-test262.o" -c run-test262.c
590+
cc -Wall -I/ -DQJS_BUILD_LIBC -o "$RUNNER_TEMP/quickjs-amalgam.o" -c "$RUNNER_TEMP/quickjs-amalgam.c"
591+
cc -o "$RUNNER_TEMP/run-test262" "$RUNNER_TEMP/run-test262.o" "$RUNNER_TEMP/quickjs-amalgam.o" -lm
592592
- name: test
593593
run: |
594-
make test RUN262=$RUNNER_TEMP/run-test262
594+
make test RUN262="$RUNNER_TEMP/run-test262"
595595
596596
jscheck:
597597
runs-on: ubuntu-latest
@@ -617,6 +617,8 @@ jobs:
617617
args: -Dlibc=true
618618
- name: mimalloc
619619
args: -Dcli_mimalloc=auto
620+
- name: jscheck
621+
args: -Djscheck=true
620622
mode:
621623
- name: default
622624
args: -Dtests=enabled

0 commit comments

Comments
 (0)