ERROR: Uploading artifacts as "archive" to coordinator... too large archive gitlab Saas

We are having trouble with the CI Pipeline presenting the following error:

node_modules/: found 122866 matching files and directories 
ERROR: Uploading artifacts as "archive" to coordinator... too large archive  id=1083381568 responseStatus=413 Request Entity Too Large status=413 token=ohtQx3nF

This just started for us yesterday and we are using Gitlab.com. I have read several articles about this problem and all of those references the gitlab on-premise version as far as I can tell.

We are not using a reverse proxy or docker as this is a react SPA that is deployed to netlify.com

I can not figure out how to increase the artifact size inside of gitlab.com group settings.

Any help would be appreciated!

Here is our gitlab-ci.yml file:

image: node:12

stages:
  - install
  - test
  - build
  - release
  - deploy

cache:
  paths:
    - node_modules/
    - build/

variables:
  CI: "true"
  NODE_ENV: "test"

install_dependencies:
  stage: install
  script:
    - npm install
  artifacts:
    paths:
      - node_modules/
  only:
    - tags
    - branches

run_tests:
  stage: test
  script:
    - npm test
    - npm run coverage
  artifacts:
    paths:
      - coverage/
  only:
    - tags
    - branches

lint:
  stage: test
  script: npm run lint
  only:
    - tags
    - branches

build:
  stage: build
  script: REACT_APP_VERSION=$CI_COMMIT_SHA npm run build
  artifacts:
    paths:
      - build/
  only:
    - tags
    - branches

version:
  stage: release
  only:
    refs:
      - master
  script: npx semantic-release

deploy_preview:
  stage: deploy
  script:
    - echo "$CI_COMMIT_SHA" > ./build/tag
    - npx netlify deploy --site $NETLIFY_DEV_SITE_ID --auth $NETLIFY_AUTH_TOKEN --message "$CI_COMMIT_TITLE" --json | node ./deploy/notify.js
  environment:
    name: review/$CI_COMMIT_REF_NAME
  only:
    - branches
  except:
    - master

deploy_dev:
  stage: deploy
  script:
    - echo "$CI_COMMIT_TAG" > ./build/tag
    - npx netlify deploy --site $NETLIFY_DEV_SITE_ID --auth $NETLIFY_AUTH_TOKEN --prod --message "$CI_COMMIT_TAG" --json | node ./deploy/notify.js
  environment:
    name: dev
    url: https://dev-app.lattus.co
  only:
    - tags

deploy_staging:
  stage: deploy
  script:
    - echo "$CI_COMMIT_TAG" > ./build/tag
    - npx netlify deploy --site $NETLIFY_STAGING_SITE_ID --auth $NETLIFY_AUTH_TOKEN --prod --message "$CI_COMMIT_TAG" --json | node ./deploy/notify.js
  environment:
    name: staging
    url: https://staging-app.lattus.co
  when: manual
  only:
    - tags

deploy_production:
  stage: deploy
  script:
    - echo "$CI_COMMIT_TAG" > ./build/tag
    - npx netlify deploy --site $NETLIFY_PRODUCTION_SITE_ID --auth $NETLIFY_AUTH_TOKEN --prod --message "$CI_COMMIT_TAG" --json | node ./deploy/notify.js
  environment:
    name: production
    url: app.dev
  when: manual
  only:
    - tags

According to docs the limit on GitLab.com SaaS is set to 1G.