mirror of
https://github.com/gradle/gradle-build-action.git
synced 2025-04-04 20:34:16 +02:00
Use setup-node to control Node version to build
This commit is contained in:
parent
f1361c71c2
commit
b61360999f
2 changed files with 8 additions and 0 deletions
5
.github/actions/build-dist/action.yml
vendored
5
.github/actions/build-dist/action.yml
vendored
|
@ -3,9 +3,14 @@ name: 'Build and upload distribution'
|
|||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
- name: Build distribution
|
||||
shell: bash
|
||||
run: |
|
||||
npm -v
|
||||
node -v
|
||||
npm install
|
||||
npm run build
|
||||
- name: Upload distribution
|
||||
|
|
3
.github/workflows/ci-verify-outputs.yml
vendored
3
.github/workflows/ci-verify-outputs.yml
vendored
|
@ -17,6 +17,9 @@ jobs:
|
|||
steps:
|
||||
- name: Checkout sources
|
||||
uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
- name: Build
|
||||
run: |
|
||||
npm -v
|
||||
|
|
Loading…
Add table
Reference in a new issue