mirror of
https://github.com/meteor/meteor.git
synced 2026-01-08 15:24:00 -05:00
Merge pull request #14046 from meteor/cache-windows-ci-check
Recover cleanup step to Windows self-test workflow
This commit is contained in:
10
.github/workflows/windows-selftest.yml
vendored
10
.github/workflows/windows-selftest.yml
vendored
@@ -37,6 +37,10 @@ jobs:
|
||||
cancel-in-progress: true
|
||||
|
||||
steps:
|
||||
- name: Cleanup
|
||||
shell: powershell
|
||||
run: Remove-Item -Recurse -Force ${{ github.workspace }}\*
|
||||
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
@@ -60,6 +64,12 @@ jobs:
|
||||
restore-keys: |
|
||||
${{ runner.os }}-meteor-
|
||||
|
||||
- name: Reset submodules (force refetch)
|
||||
shell: pwsh
|
||||
run: |
|
||||
git submodule deinit -f --all
|
||||
if (Test-Path ".git/modules") { Remove-Item -Recurse -Force ".git/modules" }
|
||||
|
||||
- name: Install dependencies
|
||||
shell: pwsh
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user