From ce662292d3972419d15743aee8e42f6331517882 Mon Sep 17 00:00:00 2001 From: microshine Date: Tue, 26 Oct 2021 16:41:05 +0300 Subject: [PATCH] ci: Use NodeJS 12.x, 14.x, 16.x --- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 12ab396..630a2ec 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: '12.x' + node-version: '14.x' - name: Install dependencies run: npm install - name: Build diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9e5f8f5..6917e5e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x, 14.x] + node-version: [12.x, 14.x, 16.x] steps: - uses: actions/checkout@v2