We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d451eb commit 51167a2Copy full SHA for 51167a2
.github/workflows/release.yml
@@ -46,6 +46,11 @@ jobs:
46
runs-on: ubuntu-latest
47
timeout-minutes: 30
48
steps:
49
+ - name: Setup Node.js ${{ env.NODE_ACTIVE_LTS }}
50
+ # see https://github.com/actions/setup-node
51
+ uses: actions/setup-node@v4
52
+ with:
53
+ node-version: ${{ env.NODE_ACTIVE_LTS }}
54
- name: enable yarn # needed in some tests
55
run: |-
56
corepack enable
@@ -59,11 +64,6 @@ jobs:
59
64
set -eux
60
65
git config --local user.email "${GITHUB_ACTOR}@users.noreply.github.com"
61
66
git config --local user.name "${GITHUB_ACTOR}"
62
- - name: Setup Node.js ${{ env.NODE_ACTIVE_LTS }}
63
- # see https://github.com/actions/setup-node
- uses: actions/setup-node@v4
- with:
- node-version: ${{ env.NODE_ACTIVE_LTS }}
67
## ! no npm build at the moment
68
- name: bump VERSION
69
id: bump
0 commit comments