Skip to content

Commit 73239e5

Browse files
author
Daniele Briggi
committed
fix(workflow): remove files not folder
1 parent 3bb8b75 commit 73239e5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
exit 1
124124
125125
- name: remove with-javascript-express
126-
run: rm -rf examples/with-javascript-express
126+
run: rm -rf examples/with-javascript-express/*
127127

128128
- name: node with-plain-javascript
129129
working-directory: examples/with-plain-javascript
@@ -168,7 +168,7 @@ jobs:
168168
169169
- name: remove with-plain-javascript
170170
if: matrix.os != 'windows-latest' #kill command doesn not work on windows with bash, we can skip this step
171-
run: rm -rf examples/with-plain-javascript
171+
run: rm -rf examples/with-plain-javascript/*
172172

173173
- name: node with-typescript-knex
174174
working-directory: examples/with-typescript-knex
@@ -199,7 +199,7 @@ jobs:
199199
exit 1
200200
201201
- name: remove with-typescript-knex
202-
run: rm -rf examples/with-typescript-knex
202+
run: rm -rf examples/with-typescript-knex/*
203203

204204
- name: node with-typescript-nextjs
205205
working-directory: examples/with-typescript-nextjs
@@ -253,7 +253,7 @@ jobs:
253253
254254
- name: remove with-typescript-nextjs
255255
if: matrix.os != 'ubuntu-latest' #rm: cannot remove examples/with-typescript-nextjs: Directory not empty
256-
run: rm -rf examples/with-typescript-nextjs
256+
run: rm -rf examples/with-typescript-nextjs/*
257257

258258
- name: node with-javascript-vite
259259
if: matrix.os != 'LinuxARM64'
@@ -282,7 +282,7 @@ jobs:
282282
PW_DISABLE_TS_ESM: true
283283

284284
- name: remove with-javascript-vite
285-
run: rm -rf examples/with-javascript-vite
285+
run: rm -rf examples/with-javascript-vite/*
286286

287287
- name: node with-javascript-browser
288288
if: matrix.os != 'LinuxARM64'
@@ -303,7 +303,7 @@ jobs:
303303
command: cd examples/with-javascript-browser && deno --allow-all test.cjs
304304

305305
- name: remove with-javascript-browser
306-
run: rm -rf examples/with-javascript-browser
306+
run: rm -rf examples/with-javascript-browser/*
307307

308308
rn-ios-test:
309309
needs: code-test

0 commit comments

Comments
 (0)