From aeabcdf4f0d4bb03327451fca1f47e61af04d75b Mon Sep 17 00:00:00 2001 From: Francis Thibault Date: Fri, 6 Oct 2023 11:18:47 -0400 Subject: [PATCH] modified CI to allow hopper tokens installation --- .github/workflows/changeset.yml | 2 +- .github/workflows/chromatic.yml | 4 ++-- .github/workflows/ci.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/changeset.yml b/.github/workflows/changeset.yml index a444f2613..0591dc288 100644 --- a/.github/workflows/changeset.yml +++ b/.github/workflows/changeset.yml @@ -30,7 +30,7 @@ jobs: - name: Install Dependencies if: steps.cache-dependencies.outputs.cache-hit != 'true' run: | - yarn install --frozen-lockfile + yarn install --frozen-lockfile --ignore-engines - name: Create release Pull Request or publish to NPM id: changesets uses: changesets/action@v1 diff --git a/.github/workflows/chromatic.yml b/.github/workflows/chromatic.yml index 0765789d1..9c7d5bebe 100644 --- a/.github/workflows/chromatic.yml +++ b/.github/workflows/chromatic.yml @@ -3,7 +3,7 @@ name: Chromatic -on: +on: pull_request: branches-ignore: - changeset-release/* @@ -22,7 +22,7 @@ jobs: node-version-file: ".nvmrc" cache: "yarn" - name: Install Dependencies - run: yarn install --frozen-lockfile + run: yarn install --frozen-lockfile --ignore-engines - name: Build Packages run: yarn build - name: Publish to Chromatic diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 167683f69..47d30a503 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,7 @@ jobs: with: node-version-file: ".nvmrc" - name: Install Dependencies - run: yarn install --frozen-lockfile + run: yarn install --frozen-lockfile --ignore-engines - name: Lint Stylelint run: yarn lint-ci-style @@ -52,7 +52,7 @@ jobs: with: node-version-file: ".nvmrc" - name: Install Dependencies - run: yarn install --frozen-lockfile + run: yarn install --frozen-lockfile --ignore-engines - name: Build Packages run: yarn build - name: Run Jest