Skip to content

Commit 9a64539

Browse files
committed
cleanup
1 parent dfac9af commit 9a64539

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
GITHUB_ACTIONS_OUTPUT: ""
1818
strategy:
1919
matrix:
20-
browser: [chrome, firefox, safari, javascriptcore, spidermonkey, v8]
20+
browser: [chrome, firefox, safari, jsc, spidermonkey, v8]
2121
steps:
2222
- name: Extract Week Number
2323
run: echo "WEEK_NUMBER=$(date +%W)" >> $GITHUB_ENV
@@ -35,9 +35,9 @@ jobs:
3535
- name: Cache jsvu Binaries
3636
uses: actions/cache@v4
3737
with:
38-
path: ~/.jsvu
38+
path: ~/.jsvu
3939
key: ${{ runner.os }}-build-jsvu-cache-${{ matrix.browser }}-${{ env.WEEK_NUMBER }}
40-
- name: Run tests
40+
- name: Run Tests
4141
run: |
4242
echo "Running in $BROWSER"
4343
npm run test:${{ matrix.browser }}

tests/run-shell.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ function sh(binary, args) {
106106
const cmd = `${binary} ${args.join(" ")}`;
107107
if (GITHUB_ACTIONS_OUTPUT) {
108108
core.startGroup(binary);
109-
core.info(cmd);
109+
core.notice(cmd);
110110
} else {
111111
console.log(styleText("cyan", cmd));
112112
}

0 commit comments

Comments
 (0)