Skip to content

Commit 49aa432

Browse files
author
alfredosalzillo
committed
chore(CI/CD): use ci/cd yarn install flag
Signed-off-by: alfredosalzillo <[email protected]>
1 parent 0f97db1 commit 49aa432

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/CD.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v3
1717
- name: build
1818
run: |
19-
yarn install
19+
yarn install --frozen-lockfile
2020
yarn run build
2121
test:
2222
runs-on: ${{ matrix.os }}
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions/checkout@v3
3232
- name: build
3333
run: |
34-
yarn install
34+
yarn install --frozen-lockfile
3535
yarn run build
3636
- name: test
3737
run: yarn run test
@@ -49,7 +49,7 @@ jobs:
4949
- uses: actions/checkout@v3
5050
- name: build
5151
run: |
52-
yarn install
52+
yarn install --frozen-lockfile
5353
yarn run build
5454
- name: deploy
5555
uses: codfish/semantic-release-action@v2

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v3
1414
- name: build
1515
run: |
16-
yarn install
16+
yarn install --frozen-lockfile
1717
yarn run build
1818
test:
1919
runs-on: ${{ matrix.os }}
@@ -28,7 +28,7 @@ jobs:
2828
- uses: actions/checkout@v3
2929
- name: build
3030
run: |
31-
yarn install
31+
yarn install --frozen-lockfile
3232
yarn run build
3333
- name: test
3434
run: yarn run test

0 commit comments

Comments
 (0)