-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RID-4898 update release.yml node envirovnment & yarn steps
- Loading branch information
1 parent
8ee81ce
commit 9a1d591
Showing
1 changed file
with
8 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name: Release Artifact | ||
|
||
env: | ||
NODE_VERSION: 16.14 | ||
NODE_VERSION: 18.0.0 | ||
RUNID_VERSION_SUFFIX: ${{ github.run_id }}.${{ github.run_attempt }} | ||
|
||
on: | ||
|
@@ -26,13 +26,16 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install yarn | ||
run: npm install --global yarn | ||
- name: Enable Corepack | ||
run: corepack enable | ||
|
||
- name: Install dependencies | ||
- name: Prepare Yarn 3.4.1 | ||
run: corepack prepare [email protected] --activate | ||
|
||
- name: Install package dependencies | ||
run: | | ||
cd package | ||
yarn | ||
yarn install --frozen-lockfile | ||
- name: Build | ||
run: | | ||
|