Skip to content

Commit

Permalink
fix: failing node 16 ci
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando committed Oct 22, 2024
1 parent 2fce880 commit 5ccf5e3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@ jobs:
path: ~/.pkg-cache/
key: ${{ matrix.os }}-${{ matrix.node-version }}

- run: yarn install
- if: matrix['node-version'] == '16.x'
# some modules like tar require node 18
run: yarn install --ignore-engines
- if: matrix['node-version'] != '16.x'
run: yarn install

- if: matrix['node-version'] == '18.x' && matrix['os'] == 'ubuntu-latest'
run: yarn lint
- run: yarn build
Expand Down

0 comments on commit 5ccf5e3

Please sign in to comment.