Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

devDeps: deduplicate babel packages #6185

Merged
merged 2 commits into from
Sep 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest]
node-version: [16.x, 18.x, 20.x]
# TODO: unpin to 20.x once 20.7 has ben released
node-version: [16.x, 18.x, 20.5]
env: [GETH=true, PACKAGES=true, INTEGRATION=true]
runs-on: ${{ matrix.platform }}

Expand All @@ -47,9 +48,9 @@ jobs:

- run: yarn install
- run: test -z "$(git diff)" || (echo 'Did you check in a generated file to source control? Please remove it if so'; false)

- run: yarn depcheck

- run: ${{ matrix.env }} yarn ci
env:
CI: true
Loading