Skip to content

Commit 3897fcf

Browse files
committed
ci: added work folder cleanup
1 parent 8133a78 commit 3897fcf

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ jobs:
4242
NODE_ENV: development
4343

4444
steps:
45+
- name: cleanup work folder
46+
run: |
47+
if [ -n "${GITHUB_WORKSPACE}" ]; then
48+
rm -rf ${GITHUB_WORKSPACE}/*
49+
fi
4550
- uses: actions/checkout@v4
4651
with:
4752
fetch-depth: 25

0 commit comments

Comments
 (0)