File tree Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Expand file tree Collapse file tree 2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ jobs:
26
26
strategy :
27
27
fail-fast : false
28
28
matrix :
29
- runner :
30
- [
29
+ runner : [
31
30
rspack-ubuntu-22.04-large,
32
- rspack-windows-2022-large,
31
+ # TODO: enable later
32
+ # rspack-windows-2022-large,
33
33
windows-latest,
34
34
rspack-darwin-14-medium,
35
35
]
51
51
cache-name : test-go
52
52
- name : Unit Test
53
53
run : |
54
- go test -parallel 4 ./internal/...
54
+ go test -parallel 8 ./internal/...
55
55
go-lint :
56
56
name : Go Lint
57
57
runs-on : rspack-ubuntu-22.04-large
@@ -149,6 +149,7 @@ jobs:
149
149
needs :
150
150
- test-go
151
151
- test-node
152
+ - go-lint
152
153
if : always()
153
154
runs-on : ubuntu-latest
154
155
name : CI Done
Original file line number Diff line number Diff line change @@ -102,9 +102,9 @@ jobs:
102
102
pnpm -r publish --no-git-checks --tag ${{ github.event.inputs.npm_tag }} --publish-branch ${{ github.event.inputs.branch }}
103
103
git config --global user.email "github-actions[bot]@users.noreply.github.com"
104
104
git config --global user.name "github-actions"
105
- echo git tag v $(jq -r .version package.json)
106
- git tag v$(jq -r . version package.json)
107
- git push origin --follow-tags
105
+ version= $(jq -r .version package.json)
106
+ git tag v$version -m "v$ version"
107
+ git push origin v$version
108
108
109
109
publish-extension-vscode :
110
110
if : ${{ inputs.to_release == 'all' || inputs.to_release == 'extension' }}
@@ -220,7 +220,7 @@ jobs:
220
220
- name : Setup Go
221
221
uses : ./.github/actions/setup-go
222
222
with :
223
- go-version : ${{ env.GO_VERSION }}
223
+ go-version : 1.25.0
224
224
cache-name : ${{ matrix.node_os }}-${{ matrix.node_arch }}
225
225
226
226
- name : Install pnpm
@@ -318,7 +318,7 @@ jobs:
318
318
- name : Setup Go
319
319
uses : ./.github/actions/setup-go
320
320
with :
321
- go-version : ${{ env.GO_VERSION }}
321
+ go-version : 1.25.0
322
322
cache-name : ${{ matrix.node_os }}-${{ matrix.node_arch }}
323
323
324
324
- name : Install pnpm
You can’t perform that action at this time.
0 commit comments