File tree Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Expand file tree Collapse file tree 2 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,12 @@ jobs:
23
23
runs-on : windows-latest
24
24
strategy :
25
25
matrix :
26
- dotnet-version : [ '${{ vars.DOTNET_VERSION }} ' ]
27
- node-version : [ '${{ vars.NODE_VERSION }} ' ]
26
+ dotnet-version : [ '6.0.x ' ]
27
+ node-version : [ '20.x ' ]
28
28
steps :
29
29
- name : Checkout
30
30
uses : actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
31
31
32
- - run : echo Calling setup-node with node-version ${{ vars.NODE_VERSION }}
33
-
34
32
- name : Setup Node.js ${{ matrix.node-version }}
35
33
uses : actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
36
34
with :
46
44
- name : Test JavaScript
47
45
run : npx lerna run test
48
46
49
- - run : echo Calling setup-dotnet with dotnet-version ${{ vars.DOTNET_VERSION }}
50
-
51
47
- name : Setup .NET Core SDK ${{ matrix.dotnet-version }}
52
48
uses : actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4.0.0
53
49
with :
Original file line number Diff line number Diff line change @@ -54,11 +54,10 @@ jobs:
54
54
permissions :
55
55
id-token : write
56
56
steps :
57
- - run : echo Calling setup-node with node-version ${{ vars.NODE_VERSION }}
58
57
- uses : actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
59
58
- uses : actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
60
59
with :
61
- node-version : ${{ vars.NODE_VERSION }}
60
+ node-version : 20.x
62
61
registry-url : https://registry.npmjs.org/
63
62
- run : |
64
63
lerna publish from-package --no-private --yes
77
76
with :
78
77
name : packages
79
78
path : ./packages
80
- - run : echo Calling setup-dotnet with dotnet-version ${{ vars.DOTNET_VERSION }}
81
79
- uses : actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4.0.0
82
80
with :
83
- dotnet-version : ${{ vars.DOTNET_VERSION }}
81
+ dotnet-version : 6.0.x
84
82
- name : Publish Messaging packages
85
83
working-directory : ./packages
86
84
run : |
You can’t perform that action at this time.
0 commit comments