From dff57cc1adf47d57d911df079a1665478ca54aee Mon Sep 17 00:00:00 2001 From: Amaresh S M Date: Sat, 2 Jul 2022 12:32:41 -0700 Subject: [PATCH] ci: add node v18 to test workflow (#130) * ci: add node v18 to test workflow * ci: use v18.x for github actions --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e985f4b..7d6c383 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: '16.x' + node-version: '18.x' - name: Install dependencies run: npm ci - name: Lint files @@ -25,10 +25,10 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node: [16.x, 14.x, 12.x] + node: [18.x, 16.x, 14.x, 12.x] include: - os: windows-latest - node: "16.x" + node: "18.x" runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3