Skip to content

Commit ae758da

Browse files
committed
fix formatting
1 parent 6793592 commit ae758da

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

.github/workflows/test.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,36 @@ jobs:
2121
steps:
2222
- name: Extract Week Number
2323
run: echo "WEEK_NUMBER=$(date +%W)" >> $GITHUB_ENV
24+
2425
- name: Install Firefox
2526
if: ${{ matrix.browser == 'firefox' }}
2627
run: brew install --cask firefox
28+
2729
- name: Checkout Branch
2830
uses: actions/checkout@v4
31+
32+
- name: Cache node modules
33+
uses: actions/cache@v4
34+
with:
35+
# npm cache files are stored in `~/.npm` on Linux/macOS
36+
path: ~/.npm
37+
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/package-lock.json') }}
38+
restore-keys: ${{ runner.os }}-build-node-modules-
39+
2940
- name: Setup Node
3041
uses: actions/setup-node@v4
3142
with:
3243
node-version: '23.x'
44+
3345
- name: Install Node Packages
3446
run: npm ci
47+
3548
- name: Cache jsvu Binaries
3649
uses: actions/cache@v4
3750
with:
3851
path: ~/.jsvu
39-
key: ${{ runner.os }}-build-jsvu-cache-${{ matrix.browser }}-${{ env.WEEK_NUMBER }}
52+
key: ${{ runner.os }}-jsvu-${{ matrix.browser }}-week-${{ env.WEEK_NUMBER }}
53+
4054
- name: Run Tests
4155
run: |
4256
echo "Running in $BROWSER"

0 commit comments

Comments
 (0)