We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e27f30 commit ab716d8Copy full SHA for ab716d8
.github/workflows/test.yml
@@ -21,13 +21,18 @@ jobs:
21
if: ${{ matrix.browser == 'firefox' }}
22
run: brew install --cask firefox
23
- name: Checkout Branch
24
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
25
- name: Setup Node
26
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
27
with:
28
- node-version: 23.6.1
29
- - name: Install
30
- run: npm install
+ node-version: '23.x'
+ - name: Install Node Packages
+ run: npm ci
31
+ - name: Cache jsvu Binaries
32
+ uses: actions/cache@v4
33
+ with:
34
+ path: |
35
+ ~/.jsvu
36
- name: Run tests
37
run: |
38
echo "Running in $BROWSER"
0 commit comments