Skip to content

Commit d164633

Browse files
committed
fix cleanup yml file
1 parent 25e42d9 commit d164633

File tree

1 file changed

+21
-20
lines changed

1 file changed

+21
-20
lines changed

.github/workflows/cleanup.yml

Lines changed: 21 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,25 @@ on:
99
schedule:
1010
- cron: "0 0 * * 0"
1111

12-
cleanup:
13-
runs-on: ubuntu-latest
14-
concurrency:
15-
group: test-workflow
16-
cancel-in-progress: true
17-
steps:
18-
- uses: actions/checkout@v3
19-
with:
20-
fetch-depth: 0
21-
- name: Setup Node
22-
uses: actions/setup-node@v3
23-
with:
24-
node-version: 20
25-
cache: "yarn"
12+
jobs:
13+
cleanup:
14+
runs-on: ubuntu-latest
15+
concurrency:
16+
group: test-workflow
17+
cancel-in-progress: true
18+
steps:
19+
- uses: actions/checkout@v3
20+
with:
21+
fetch-depth: 0
22+
- name: Setup Node
23+
uses: actions/setup-node@v3
24+
with:
25+
node-version: 20
26+
cache: "yarn"
2627

27-
- name: Install Dependencies
28-
run: yarn install --immutable
29-
- name: Build
30-
run: yarn build
31-
- name: Cleanup
32-
run: node test-cleanup.js
28+
- name: Install Dependencies
29+
run: yarn install --immutable
30+
- name: Build
31+
run: yarn build
32+
- name: Cleanup
33+
run: node test-cleanup.js

0 commit comments

Comments
 (0)