Skip to content

Commit 4df8074

Browse files
committed
Add working GitHub Actions workflow for running tests
1 parent cc9d10c commit 4df8074

1 file changed

Lines changed: 5 additions & 8 deletions

File tree

.github/workflows/test.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,9 @@ jobs:
2525
- name: Run tests
2626
run: npm test
2727

28-
- name: Upload test results
28+
- name: Cleanup
2929
if: always()
30-
uses: actions/upload-artifact@v3
31-
with:
32-
name: test-results
33-
path: |
34-
coverage/
35-
test-results/
36-
if-no-files-found: ignore
30+
run: |
31+
echo "Cleaning up..."
32+
rm -rf node_modules
33+
rm -rf .npm

0 commit comments

Comments
 (0)