diff options
| author | Shinigami <[email protected]> | 2023-05-10 08:15:25 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-10 06:15:25 +0000 |
| commit | 9e1155ceb59b132d291b9d11be279896633cfb62 (patch) | |
| tree | 69350f5795379a28abdd86d8f94359dd4d1c14ce /.github | |
| parent | ee8c97cf6e80025707d5cf458981a14be06406ed (diff) | |
| download | faker-9e1155ceb59b132d291b9d11be279896633cfb62.tar.xz faker-9e1155ceb59b132d291b9d11be279896633cfb62.zip | |
infra: support NodeJS v20 (#2122)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 6 |
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 |
