From b169489ce9f922009882dce8264fcb9689d51ddd Mon Sep 17 00:00:00 2001 From: MDLeom <43627182+curbengh@users.noreply.github.com> Date: Sun, 25 Apr 2021 08:47:04 +0000 Subject: [PATCH] chore(ci): run most tests on Node 14 - active LTS --- .github/workflows/linter.yml | 4 ++-- .github/workflows/snyk.yml | 4 ++-- .github/workflows/tester.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 18c1ae5..e065b75 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js 12.x + - name: Use Node.js 14.x uses: actions/setup-node@v2.1.5 with: - node-version: '12.x' + node-version: '14.x' - name: Cache NPM dependencies uses: actions/cache@v2.1.4 with: diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml index d27dc6f..5b8ee8a 100644 --- a/.github/workflows/snyk.yml +++ b/.github/workflows/snyk.yml @@ -10,10 +10,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - name: Use Node.js 12.x + - name: Use Node.js 14.x uses: actions/setup-node@v2.1.5 with: - node-version: '12.x' + node-version: '14.x' - name: Install Dependencies run: npm install - name: Run Snyk to check for vulnerabilities diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml index eec44eb..8fbfc67 100644 --- a/.github/workflows/tester.yml +++ b/.github/workflows/tester.yml @@ -33,7 +33,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - node-version: ['12.x'] + node-version: ['14.x'] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }}