Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
waldekmastykarz committed Sep 15, 2024
1 parent df9f151 commit c9a38f7
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/check_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
# os: [macos-latest, windows-latest, ubuntu-latest]
os: [macos-latest, ubuntu-latest]
node: [20]

steps:
Expand Down Expand Up @@ -49,7 +50,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
# os: [macos-latest, windows-latest, ubuntu-latest]
os: [macos-latest, ubuntu-latest]
# node versions to run tests on
nodeRun: [20]
# node version on which code was built and should be tested
Expand Down Expand Up @@ -94,10 +96,12 @@ jobs:
if: steps.cache.outputs.cache-hit != 'true'
run: npm ci
- name: Cache .eslintcache
if: matrix.nodeRun == matrix.nodeBuild
id: eslintcache
uses: actions/cache@v4
with:
path: .eslintcache
path: |
.eslintcache
key: eslintcache-${{ hashFiles('npm-shrinkwrap.json', '.eslintrc.cjs') }}
- name: Test with coverage
# we run coverage only on Node that was used to build
Expand Down

0 comments on commit c9a38f7

Please sign in to comment.