Skip to content

Commit

Permalink
chore: skip broken GHAs
Browse files Browse the repository at this point in the history
  • Loading branch information
jeswr committed Jul 1, 2023
1 parent 8fe426f commit 9d60443
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/bundlers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
2 changes: 2 additions & 0 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 9d60443

Please sign in to comment.