Skip to content

Commit

Permalink
Install production dependencies with engines check in CI jobs
Browse files Browse the repository at this point in the history
We recently updated glob to v11, which does not support Node 18, and so
have to downgrade it and publish another release:

#330

I want to make sure we catch this in CI next time and I think this might
do the trick.
  • Loading branch information
lencioni committed Feb 17, 2025
1 parent 12760fe commit 055e39e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ jobs:
node-version: ${{ matrix.node }}
cache: 'yarn'

- run: yarn install --frozen-lockfile --ignore-engines
- name: Install dependencies
run: |
yarn install --frozen-lockfile --production=true
yarn install --frozen-lockfile --ignore-engines
- run: yarn test --colors

Expand Down

0 comments on commit 055e39e

Please sign in to comment.