Skip to content

Commit 4ae7970

Browse files
committed
Fix uncommitted workflow
1 parent de72e44 commit 4ae7970

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/uncommited.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,13 @@ jobs:
2020
name: Build
2121
run: |
2222
npm install
23-
npm run build
2423
npm run format
25-
npm prune --production
24+
npm run build
25+
-
26+
name: Prune prod
27+
run: |
28+
rm -rf node_modules
29+
npm install --production
2630
-
2731
name: Check for uncommitted changes
2832
run: |

0 commit comments

Comments
 (0)