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: ...@@ -15,7 +15,7 @@ jobs:
path: node_modules path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }} key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}
- name: Install - name: Install
run: yarn install --frozen-lockfile run: yarn install --immutable
- name: Format - name: Format
run: yarn checkformatting run: yarn checkformatting
- name: Lint - name: Lint
......
...@@ -40,7 +40,7 @@ jobs: ...@@ -40,7 +40,7 @@ jobs:
path: node_modules path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }} key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}
- name: Install - name: Install
run: yarn install --frozen-lockfile run: yarn install --immutable
- name: Get version - name: Get version
run: | run: |
git fetch --tags --quiet git fetch --tags --quiet
...@@ -84,7 +84,7 @@ jobs: ...@@ -84,7 +84,7 @@ jobs:
path: node_modules path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }} key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}
- name: Install - name: Install
run: yarn install --frozen-lockfile run: yarn install --immutable
- name: Determine release version - name: Determine release version
run: | run: |
git fetch --tags --quiet 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