Skip to content

Commit

Permalink
drop node 14 support (#763)
Browse files Browse the repository at this point in the history
* drop node 14 support

* test

* fix intendation

* use double instead of tripple equal

* fix needs of automerge

* more descriptive title

* nicer
  • Loading branch information
Uzlopak authored Jun 7, 2023
1 parent cdd8c0e commit f0e8d62
Showing 1 changed file with 69 additions and 11 deletions.
80 changes: 69 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,32 +16,90 @@ on:
- '*.md'

jobs:
dependency-review:
name: Dependency Review
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out repo
uses: actions/checkout@v3
with:
persist-credentials: false

- name: Dependency review
uses: actions/dependency-review-action@v3
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
with:
persist-credentials: false

- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm i --ignore-scripts

- name: Lint
run: npm run lint

test:
uses: fastify/workflows/.github/workflows/plugins-ci.yml@v3
with:
license-check: true
license-check-allowed-additional: CC-BY-4.0;CC0-1.0
lint: true

test12:
name: 'Run tests using Next@12'
name: Run tests for next ${{ matrix.next-version }} with node ${{ matrix.node-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
permissions:
contents: read

strategy:
matrix:
node-version: [ 14, 16, 18 ]
next-version: [12, 13]
node-version: [ 14, 16, 18, 20 ]
os: [ macos-latest, ubuntu-latest, windows-latest ]
exclude:
- next-version: 13
node-version: 14

steps:
- name: Check out repo
uses: actions/checkout@v3
with:
persist-credentials: false

- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install dependencies
run: npm i --ignore-scripts
- run: npm install next@12
- run: npm test

- name: Install next 12 (if necessary)
if: matrix.next-version == 12
run: npm install next@12

- name: Run tests
run: npm test

automerge:
name: Automatically merge Dependabot pull requests
if: >
github.event_name == 'pull_request' &&
github.event.pull_request.user.login == 'dependabot[bot]'
needs:
- dependency-review
- lint
- test
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit f0e8d62

Please sign in to comment.