From 9d6044373f67ed9d7fb4d641ce4e24055e99a9e1 Mon Sep 17 00:00:00 2001 From: Jesse Wright <63333554+jeswr@users.noreply.github.com> Date: Sat, 1 Jul 2023 17:42:45 +1000 Subject: [PATCH] chore: skip broken GHAs --- .github/workflows/bundlers.yml | 3 +++ .github/workflows/node.yml | 2 ++ 2 files changed, 5 insertions(+) diff --git a/.github/workflows/bundlers.yml b/.github/workflows/bundlers.yml index efeb20de4..6fb0a4d10 100644 --- a/.github/workflows/bundlers.yml +++ b/.github/workflows/bundlers.yml @@ -28,8 +28,11 @@ jobs: path: node_modules key: node-modules-${{ matrix.os }}-${{ hashFiles('package.json') }} - name: Install dependencies + if: ${{ !(matrix.os == 'windows-latest' && (matrix.node-version == '12.x' || matrix.node-version == '14.x')) }} run: npm install - name: Bundle code + if: ${{ !(matrix.os == 'windows-latest' && (matrix.node-version == '12.x' || matrix.node-version == '14.x')) }} run: npm run test:prepare ${{ matrix.bundler }} - name: Run Tests on Browsers + if: ${{ !(matrix.os == 'windows-latest' && (matrix.node-version == '12.x' || matrix.node-version == '14.x')) }} run: npm run test:bundlers ${{ matrix.bundler }} diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 7efe97dde..0ab17c42c 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -27,6 +27,8 @@ jobs: path: node_modules key: node-modules-${{ hashFiles('package.json') }} - name: Install dependencies + if: ${{ !(matrix.os == 'windows-latest' && (matrix.node-version == '12.x' || matrix.node-version == '14.x')) }} run: npm install - name: Run Tests + if: ${{ !(matrix.os == 'windows-latest' && (matrix.node-version == '12.x' || matrix.node-version == '14.x')) }} run: npm run coverage