Skip to content

Commit 60e6250

Browse files
committed
run on namespace
1 parent 69c0911 commit 60e6250

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/check-dist.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,15 @@ on:
1919

2020
jobs:
2121
check-dist:
22-
runs-on: ubuntu-latest
22+
runs-on: namespace-profile-default
2323

2424
steps:
2525
- uses: actions/checkout@v4
2626

27-
- run: git submodule update --init actions-toolkit
27+
- run: |
28+
git submodule update --init actions-toolkit
29+
cd actions-toolkit/packages/artifact
30+
npm install
2831
2932
- name: Setup Node 20
3033
uses: actions/setup-node@v4

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ jobs:
2525
- name: Checkout
2626
uses: actions/checkout@v4
2727

28-
- run: git submodule update --init actions-toolkit
28+
- run: |
29+
git submodule update --init actions-toolkit
30+
cd actions-toolkit/packages/artifact
31+
npm install
2932
3033
- name: Setup Node 20
3134
uses: actions/setup-node@v4

0 commit comments

Comments
 (0)