Skip to content

Commit 98d0d1e

Browse files
author
Lukas Holzer
authored
fix!: drop node 12 support as it already reached EOL (#4599)
1 parent b75d4a0 commit 98d0d1e

File tree

22 files changed

+352
-112
lines changed

22 files changed

+352
-112
lines changed

.github/workflows/workflow.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
node-version: ['*']
1616
include:
1717
- os: ubuntu-latest
18-
node-version: '12.20.0'
18+
node-version: '14.16.0'
1919
fail-fast: false
2020
steps:
2121
# Sets an output parameter if this is a release PR
@@ -37,7 +37,7 @@ jobs:
3737
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
3838
- name: Install npm@7
3939
run: npm install -g npm@7
40-
if: ${{ matrix.node-version == '12.20.0' && !steps.release-check.outputs.IS_RELEASE }}
40+
if: ${{ matrix.node-version == '14.16.0' && !steps.release-check.outputs.IS_RELEASE }}
4141
- name: Install dependencies
4242
run: npm ci
4343
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
@@ -61,19 +61,19 @@ jobs:
6161
# We test on the oldest supported Node.js version, but only with a
6262
# single combination (Ubuntu)
6363
- os: ubuntu-latest
64-
node-version: '12.20.0'
64+
node-version: '14.16.0'
6565
install-command: npm ci
6666
machine: '0'
6767
- os: ubuntu-latest
68-
node-version: '12.20.0'
68+
node-version: '14.16.0'
6969
install-command: npm ci
7070
machine: '1'
7171
- os: ubuntu-latest
72-
node-version: '12.20.0'
72+
node-version: '14.16.0'
7373
install-command: npm ci
7474
machine: '2'
7575
- os: ubuntu-latest
76-
node-version: '12.20.0'
76+
node-version: '14.16.0'
7777
install-command: npm ci
7878
machine: '3'
7979
# The buildbot pins Netlify Build's dependencies, like `npm ci`.
@@ -120,7 +120,7 @@ jobs:
120120
if: ${{ !steps.release-check.outputs.IS_RELEASE }}
121121
- name: Install npm@7
122122
run: npm install -g npm@7
123-
if: ${{ matrix.node-version == '12.20.0' && !steps.release-check.outputs.IS_RELEASE }}
123+
if: ${{ matrix.node-version == '14.16.0' && !steps.release-check.outputs.IS_RELEASE }}
124124
- name: Install dependencies
125125
run: ${{ matrix.install-command }}
126126
if: ${{ !steps.release-check.outputs.IS_RELEASE }}

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
[![Coverage Status](https://codecov.io/gh/netlify/build/branch/main/graph/badge.svg)](https://codecov.io/gh/netlify/build)
44
[![Build](https://github.com/netlify/build/workflows/Build/badge.svg)](https://github.com/netlify/build/actions)
5+
[![CircleCI](https://dl.circleci.com/status-badge/img/gh/netlify/build/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/netlify/build/tree/main)
56

67
Netlify Build runs the build command and Build Plugins and bundles Netlify Functions.
78

0 commit comments

Comments
 (0)