diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 945c01d..4862f1a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -18,6 +18,9 @@ jobs: #- name: Install yarn # run: npm install --global yarn + - name: Disable node version check + run: yarn config set ignore-engines true + - name: Install packages marked as dependencies run: yarn diff --git a/.github/workflows/check:types.yaml b/.github/workflows/check:types.yaml index de860f5..57cb655 100644 --- a/.github/workflows/check:types.yaml +++ b/.github/workflows/check:types.yaml @@ -15,6 +15,9 @@ jobs: # Runs a set of commands using the runners shell + - name: Disable node version check + run: yarn config set ignore-engines true + - name: Install packages marked as dependencies run: yarn diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index f8714d0..60855bc 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -15,6 +15,9 @@ jobs: # Runs a set of commands using the runners shell + - name: Disable node version check + run: yarn config set ignore-engines true + - name: Install packages marked as dependencies run: yarn diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 0ad488e..0d51517 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -15,6 +15,9 @@ jobs: # Runs a set of commands using the runners shell + - name: Disable node version check + run: yarn config set ignore-engines true + - name: Install packages marked as dependencies run: yarn diff --git a/.github/workflows/test:coverage:report.yaml b/.github/workflows/test:coverage:report.yaml index 30dcc3e..bf54f09 100644 --- a/.github/workflows/test:coverage:report.yaml +++ b/.github/workflows/test:coverage:report.yaml @@ -15,6 +15,9 @@ jobs: # Runs a set of commands using the runners shell + - name: Disable node version check + run: yarn config set ignore-engines true + - name: Install packages marked as dependencies run: yarn