Skip to content

Commit e03dea5

Browse files
mochaaPsaghul
authored andcommitted
ci: fix actionlint warnings
1 parent 17757b3 commit e03dea5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

+5-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

0 commit comments

Comments
 (0)