Skip to content

Commit ae9ca00

Browse files
RID-4898 update release.yml spec & yarn steps (#15)
* RID-4898 change sdk default url to api gateway * RID-4898 update CHANGELOG" * RID-6202 release new version - api gateway, DRSConfigOptions, and initSuccessLog optional param * RID-4898 update node version * RID-4898 update yarn version * RID-4898 use corepack to manage yarn version * RID-4898 fix ci.yml syntax * RID-4898 updare yarn.lock file * RID-4898 add workspace yarn.lock file * RID-4898 add --frozen-lockfile flag * RID-4898 install project * RID-4898 remove global add for improved-yarn-audit * RID-4898 run improved audit witn npx * RID-4898 add .iyarc * RID-4898 test audit in ci * RID-4898 add yarn audit script * RID-4898 run audit * RID-4898 try fix * RID-4898 test npm audit * RID-4898 bump vite for audit issue * RID-4898 fix yarn pack * RID-4898 remove pnp file * RID-4898 yarn.lock update * RID-4898 remove improved-yarn-audit package * RID-4898 update typescript package * RID-4898 update yarn.lock file * RID-4898 re-update yarn.lock file for node 18 * RID-4898 yarn use ci-version * RID-4898 update release.yml node envirovnment & yarn steps
1 parent 9ef2d68 commit ae9ca00

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Release Artifact
22

33
env:
4-
NODE_VERSION: 16.14
4+
NODE_VERSION: 18.0.0
55
RUNID_VERSION_SUFFIX: ${{ github.run_id }}.${{ github.run_attempt }}
66

77
on:
@@ -26,13 +26,16 @@ jobs:
2626
- name: Checkout
2727
uses: actions/checkout@v3
2828

29-
- name: Install yarn
30-
run: npm install --global yarn
29+
- name: Enable Corepack
30+
run: corepack enable
3131

32-
- name: Install dependencies
32+
- name: Prepare Yarn 3.4.1
33+
run: corepack prepare [email protected] --activate
34+
35+
- name: Install package dependencies
3336
run: |
3437
cd package
35-
yarn
38+
yarn install --frozen-lockfile
3639
3740
- name: Build
3841
run: |

0 commit comments

Comments
 (0)