Skip to content

Commit 27d3c48

Browse files
committed
fix
1 parent 7dc783a commit 27d3c48

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

.github/workflows/unit-test.yml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,12 @@ jobs:
3838
- name: Set up Node.js
3939
uses: actions/setup-node@v4
4040
with:
41-
node-version: '22'
42-
43-
- name: Check contents of plugin directory
44-
run: |
45-
cd packages/${{ matrix.plugin }}
46-
ls -la
41+
node-version: '22.x'
4742

4843
- name: Install dependencies for the plugin
49-
run: |
50-
cd packages/${{ matrix.plugin }}
51-
ls -la
44+
working-directory: ./packages/${{ matrix.plugin }}
45+
run: npm install
5246

5347
- name: Run tests for the plugin
54-
run: |
55-
cd packages/${{ matrix.plugin }}
56-
npm run test:unit
48+
working-directory: ./packages/${{ matrix.plugin }}
49+
run: npm run test:unit

0 commit comments

Comments
 (0)