Skip to content

Commit 945ca0a

Browse files
committed
run tests
1 parent 5c98705 commit 945ca0a

File tree

3 files changed

+19
-14
lines changed

3 files changed

+19
-14
lines changed

.github/workflows/check-dist.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v4
2626

27+
- run: git submodule update --init actions-toolkit
28+
2729
- name: Setup Node 20
2830
uses: actions/setup-node@v4
2931
with:
@@ -46,7 +48,7 @@ jobs:
4648
id: diff
4749

4850
# If index.js was different than expected, upload the expected version as an artifact
49-
- uses: actions/upload-artifact@v4
51+
- uses: namespace-actions/upload-artifact@v0
5052
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
5153
with:
5254
name: dist

.github/workflows/licensed.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
name: Licensed
22

33
on:
4-
push:
5-
branches:
6-
- main
7-
pull_request:
8-
branches:
9-
- main
4+
# push:
5+
# branches:
6+
# - main
7+
# pull_request:
8+
# branches:
9+
# - main
10+
workflow_dispatch:
1011

1112
jobs:
1213
test:

.github/workflows/test.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
runs-on: [ubuntu-latest, macos-latest, windows-latest]
19+
runs-on: [namespace-profile-default, namespace-profile-default-arm64, namespace-profile-macos-sm]
2020
fail-fast: false
2121

2222
runs-on: ${{ matrix.runs-on }}
@@ -25,6 +25,8 @@ jobs:
2525
- name: Checkout
2626
uses: actions/checkout@v4
2727

28+
- run: git submodule update --init actions-toolkit
29+
2830
- name: Setup Node 20
2931
uses: actions/setup-node@v4
3032
with:
@@ -81,7 +83,7 @@ jobs:
8183
8284
# Download Artifact #1 and verify the correctness of the content
8385
- name: 'Download artifact #1'
84-
uses: actions/download-artifact@v4
86+
uses: namespace-actions/download-artifact@v0
8587
with:
8688
name: 'Artifact-A-${{ matrix.runs-on }}'
8789
path: some/new/path
@@ -101,7 +103,7 @@ jobs:
101103

102104
# Download Artifact #2 and verify the correctness of the content
103105
- name: 'Download artifact #2'
104-
uses: actions/download-artifact@v4
106+
uses: namespace-actions/download-artifact@v0
105107
with:
106108
name: 'Artifact-Wildcard-${{ matrix.runs-on }}'
107109
path: some/other/path
@@ -122,7 +124,7 @@ jobs:
122124

123125
# Download Artifact #4 and verify the correctness of the content
124126
- name: 'Download artifact #4'
125-
uses: actions/download-artifact@v4
127+
uses: namespace-actions/download-artifact@v0
126128
with:
127129
name: 'Multi-Path-Artifact-${{ matrix.runs-on }}'
128130
path: multi/artifact
@@ -155,7 +157,7 @@ jobs:
155157

156158
# Download replaced Artifact #1 and verify the correctness of the content
157159
- name: 'Download artifact #1 again'
158-
uses: actions/download-artifact@v4
160+
uses: namespace-actions/download-artifact@v0
159161
with:
160162
name: 'Artifact-A-${{ matrix.runs-on }}'
161163
path: overwrite/some/new/path
@@ -189,7 +191,7 @@ jobs:
189191
# easier to identify each of the merged artifacts
190192
separate-directories: true
191193
- name: 'Download merged artifacts'
192-
uses: actions/download-artifact@v4
194+
uses: namespace-actions/download-artifact@v0
193195
with:
194196
name: merged-artifacts
195197
path: all-merged-artifacts
@@ -225,7 +227,7 @@ jobs:
225227

226228
# Download merged artifacts and verify the correctness of the content
227229
- name: 'Download merged artifacts'
228-
uses: actions/download-artifact@v4
230+
uses: namespace-actions/download-artifact@v0
229231
with:
230232
name: Merged-Artifact-As
231233
path: merged-artifact-a

0 commit comments

Comments
 (0)