Skip to content

Commit

Permalink
feat!: drop support for older Node
Browse files Browse the repository at this point in the history
  • Loading branch information
metcoder95 committed Dec 25, 2023
1 parent ad37d78 commit f8aaa65
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 9 deletions.
55 changes: 47 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,57 @@
on:
push:
branches:
- current
- next
- 'v*'
pull_request:

name: CI
on: [push, pull_request]

jobs:
build:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: v20.x
- name: Install dependencies
run: npm install
- name: Check linting
run: npm run lint:ci

tests:
needs: [lint]
name: Tests
strategy:
fail-fast: false
matrix:
node: [16.x, 18.x, 20.x]
name: Node ${{ matrix.node }}
os: [ubuntu-latest, macos-latest, windows-latest]
node-version: [18.x, 20.x, 21.x]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- name: Setup node
with:
persist-credentials: false

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run test:ci
node-version: ${{ matrix.node-version }}

- uses: actions/cache@v3
id: check-cache
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package.json') }}
restore-keys: |
${{ runner.os }}-node-${{ matrix.node-version }}-
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm run test:ci

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"release": "npx standard-version"
},
"engines": {
"node": ">=16.x"
"node": ">=18.x"
},
"keywords": [
"fastify",
Expand Down

0 comments on commit f8aaa65

Please sign in to comment.