ci: use correct NodeJS version

This commit is contained in:
Diego Sampaio 2023-06-14 17:58:43 -03:00
parent 842ca6734e
commit 6a2de801d0
No known key found for this signature in database
GPG Key ID: B71D302EB7F5183C
2 changed files with 10 additions and 13 deletions

View File

@ -25,15 +25,13 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
# with:
# ref: ${{ github.event.inputs.base-ref }}
- name: Setup Node.js 16
uses: actions/setup-node@v3
- name: Setup NodeJS
uses: ./.github/actions/setup-node
with:
node-version: 16
- run: yarn install
node-version: 14.21.3
cache-modules: true
install: true
- name: Build
run: yarn build

View File

@ -15,13 +15,12 @@ jobs:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Setup Node.js 16
uses: actions/setup-node@v3
- name: Setup NodeJS
uses: ./.github/actions/setup-node
with:
node-version: 16
- name: Install Dependencies
run: yarn
node-version: 14.21.3
cache-modules: true
install: true
- name: Build
run: yarn build