aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorShinigami <[email protected]>2023-05-10 08:15:25 +0200
committerGitHub <[email protected]>2023-05-10 06:15:25 +0000
commit9e1155ceb59b132d291b9d11be279896633cfb62 (patch)
tree69350f5795379a28abdd86d8f94359dd4d1c14ce /.github
parentee8c97cf6e80025707d5cf458981a14be06406ed (diff)
downloadfaker-9e1155ceb59b132d291b9d11be279896633cfb62.tar.xz
faker-9e1155ceb59b132d291b9d11be279896633cfb62.zip
infra: support NodeJS v20 (#2122)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 26ff349c..a9dd8ca4 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -15,16 +15,20 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
- node_version: [14, 16, 18]
+ node_version: [14, 16, 18, 20]
include:
- os: macos-latest
node_version: 16
- os: macos-latest
node_version: 18
+ - os: macos-latest
+ node_version: 20
- os: windows-latest
node_version: 16
- os: windows-latest
node_version: 18
+ - os: windows-latest
+ node_version: 20
fail-fast: false
timeout-minutes: 10