We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7dc783a commit 27d3c48Copy full SHA for 27d3c48
.github/workflows/unit-test.yml
@@ -38,19 +38,12 @@ jobs:
38
- name: Set up Node.js
39
uses: actions/setup-node@v4
40
with:
41
- node-version: '22'
42
-
43
- - name: Check contents of plugin directory
44
- run: |
45
- cd packages/${{ matrix.plugin }}
46
- ls -la
+ node-version: '22.x'
47
48
- name: Install dependencies for the plugin
49
50
51
+ working-directory: ./packages/${{ matrix.plugin }}
+ run: npm install
52
53
- name: Run tests for the plugin
54
55
56
- npm run test:unit
+ run: npm run test:unit
0 commit comments