Commit 74e64c03 authored by tom's avatar tom

add --ignore-optional flag to yarn command in CI

parent 0a2f045f
......@@ -42,7 +42,7 @@ jobs:
- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: yarn --frozen-lockfile
run: yarn --frozen-lockfile --ignore-optional
- name: Run ESLint
run: yarn lint:eslint
......@@ -74,10 +74,10 @@ jobs:
- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: yarn --frozen-lockfile
run: yarn --frozen-lockfile --ignore-optional
- name: Install script dependencies
run: cd ./deploy/tools/envs-validator && yarn --frozen-lockfile
run: cd ./deploy/tools/envs-validator && yarn --frozen-lockfile --ignore-optional
- name: Copy secrets file
run: cp ./.env.example ./configs/envs/.env.secrets
......@@ -114,7 +114,7 @@ jobs:
- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: yarn --frozen-lockfile
run: yarn --frozen-lockfile --ignore-optional
- name: Run Jest
run: yarn test:jest
......@@ -156,7 +156,7 @@ jobs:
- name: Install dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
run: yarn --frozen-lockfile
run: yarn --frozen-lockfile --ignore-optional
- name: Run PlayWright
run: yarn test:pw:ci
......
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