File tree 1 file changed +19
-6
lines changed
1 file changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,8 @@ concurrency:
20
20
group : ${{ github.workflow }}-${{ github.ref }}
21
21
cancel-in-progress : true
22
22
jobs :
23
- test-action :
24
- strategy :
25
- fail-fast : false
26
- matrix :
27
- os : [ubuntu-latest, macos-latest, windows-latest]
28
- runs-on : ${{ matrix.os }}
23
+ build :
24
+ runs-on : ubuntu-latest
29
25
steps :
30
26
- uses : actions/checkout@v4
31
27
- uses : actions/setup-node@v4
34
30
cache : npm
35
31
- run : npm ci
36
32
- run : npm run build
33
+ - uses : actions/upload-artifact@v4
34
+ with :
35
+ name : action-dist
36
+ path : ./dist
37
+ test :
38
+ runs-on : ${{ matrix.os }}
39
+ needs : build
40
+ strategy :
41
+ fail-fast : false
42
+ matrix :
43
+ os : [ubuntu-latest, macos-latest, windows-latest]
44
+ steps :
45
+ - uses : actions/checkout@v4
46
+ - uses : actions/download-artifact@v4
47
+ with :
48
+ name : action-dist
49
+ path : ./dist
37
50
- uses : ./
38
51
with :
39
52
cache-dependency-path : test/requirements.typ
You can’t perform that action at this time.
0 commit comments