Error Command failed with exit code 1 when run yarn cypress command

Hi,
I am getting below error when running cypress command on my test from 11/08
Is anyone have the same issue and how to resolve it.
Thank you.

Error:

yarn run v1.22.19
$ /home/circleci/project/node_modules/.bin/cypress run --spec '**/api/shipping-date/*' -e configFile=prod,allure=true
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

Exited with code exit status 1

Package json:

  "scripts": {
    "shipping-date-test": "cypress run --spec '**/api/shipping-date/*' -e configFile=prod,allure=true",

  },```
config.yml

version: “2.1”
orbs:
cypress: cypress-io/cypress@3
slack: circleci/slack@4.12.5

workflows:
tests:
jobs:
- cypress/run:
cypress-cache-key: custom-cypress-cache-v1-{{ arch }}-{{ checksum “package.json” }}
cypress-cache-path: ~/.cache/custom-dir/Cypress
package-manager: yarn
cypress-command: yarn shipping-date-test
node-cache-version: v2
context: slack_notify
pre-steps:
- run:
name: Install allure report commandline
command: |
sudo npm install -g allure-commandline
post-steps:
- run:
name: Generate Cypress report
command: allure generate allure-results --clean
when: on_fail
- store_artifacts:
path: allure-report
when: on_fail```