From 05023956240ea14664f952f9df4631ee0452771b Mon Sep 17 00:00:00 2001 From: Randolf Jung Date: Tue, 31 May 2022 16:55:40 +0200 Subject: [PATCH] chore: add node 18 to CI --- .github/workflows/ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c538ffb2..00531cba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: matrix: # Include all major maintenance + active LTS + current Node.js versions. # https://github.com/nodejs/Release#release-schedule - node: [14, 16] + node: [14, 16, 18] steps: - name: Checkout uses: actions/checkout@v3 @@ -194,7 +194,9 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [16] + # Include active LTS + current Node.js version. + # https://github.com/nodejs/Release#release-schedule + node: [16, 18] steps: - name: Checkout uses: actions/checkout@v3 @@ -233,7 +235,9 @@ jobs: matrix: # https://github.com/actions/virtual-environments#available-environments os: [ubuntu-latest, macos-latest, windows-latest] - node: [16] + # Include active LTS + current Node.js version. + # https://github.com/nodejs/Release#release-schedule + node: [16, 18] steps: - name: Checkout uses: actions/checkout@v3