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 c3b3def commit b93f8c5Copy full SHA for b93f8c5
.github/workflows/test.yml
@@ -45,6 +45,26 @@ jobs:
45
cd tests
46
bats *.bats
47
48
+ - name: Setup Node.js
49
+ uses: actions/setup-node@v6
50
+ with:
51
+ node-version: '22'
52
+
53
+ - name: Enable Corepack
54
+ run: corepack enable
55
56
+ - name: Install JS dependencies
57
+ run: |
58
+ echo "Installing JavaScript dependencies..."
59
+ cd js
60
+ yarn install --immutable
61
62
+ - name: Run vitest tests
63
64
+ echo "Running vitest test suite..."
65
66
+ yarn test
67
68
- name: Test entry.zsh loading
69
run: |
70
echo "Testing entry.zsh configuration flag handling..."
@@ -69,7 +89,7 @@ jobs:
89
90
- name: Upload test results
71
91
if: always()
72
- uses: actions/upload-artifact@v3
92
+ uses: actions/upload-artifact@v5
73
93
with:
74
94
name: test-results
75
95
path: tests/*.bats
0 commit comments