Commit 0fcf3cdd authored by Alejandro Celaya's avatar Alejandro Celaya Committed by Alejandro Celaya

Replace --frozen-lockfile flag with --immutable when using yarn install in CI

parent 28b02b03
......@@ -15,7 +15,7 @@ jobs:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}
- name: Install
run: yarn install --frozen-lockfile
run: yarn install --immutable
- name: Format
run: yarn checkformatting
- name: Lint
......
......@@ -40,7 +40,7 @@ jobs:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}
- name: Install
run: yarn install --frozen-lockfile
run: yarn install --immutable
- name: Get version
run: |
git fetch --tags --quiet
......@@ -84,7 +84,7 @@ jobs:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}
- name: Install
run: yarn install --frozen-lockfile
run: yarn install --immutable
- name: Determine release version
run: |
git fetch --tags --quiet
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment