From 0173de3f6dffe1d0f5bd6ac66813716dc8dcad32 Mon Sep 17 00:00:00 2001 From: mistval Date: Sat, 7 Jan 2023 10:24:58 -0500 Subject: [PATCH] update CI pipeline to Node 18 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0271ac7..4fb74e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,10 +8,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Use Node.js 14.x + - name: Use Node.js 18.x uses: actions/setup-node@v1 with: - node-version: 14.x + node-version: 18.x - run: npm ci - run: npm run lint - run: npm run coverage