Skip to content

Commit

Permalink
chore: Drop Node.js 16 from CI entirely (merge #2140)
Browse files Browse the repository at this point in the history
  • Loading branch information
kriskowal authored Mar 14, 2024
2 parents bca1e3f + 0380357 commit 87ed9d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ jobs:
fail-fast: false
matrix:
node-version:
- '16.1' # last version before some significant promise hooks changes
- '16.5' # last version before unconditional promise fast-path
- '16.6' # first version after unconditional promise fast-path
# - '16.1' # last version before some significant promise hooks changes
# - '16.5' # last version before unconditional promise fast-path
# - '16.6' # first version after unconditional promise fast-path
- '18' # Active LTS
# '20.6' not viable due to https://github.com/nodejs/node/issues/49497
# '20.3' to '20.6' not viable due to https://github.com/nodejs/node/pull/49211
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/depcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,13 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['16.x']
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
node-version: 18.x
- name: Install graphviz
run: sudo apt install -y graphviz

Expand Down

0 comments on commit 87ed9d2

Please sign in to comment.