Skip to content

Commit

Permalink
build: try to test on latest node 16
Browse files Browse the repository at this point in the history
  • Loading branch information
B4nan committed Sep 13, 2021
1 parent 5aead23 commit dd6f792
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/tests.yml
Expand Up @@ -20,16 +20,16 @@ jobs:
- name: Checkout Source code
uses: actions/checkout@v2

- name: Use Node.js 15
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16

- name: Cache node_modules
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-15-modules-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-16-modules-${{ hashFiles('**/yarn.lock') }}

- name: Install libkrb5-dev (for run-rs)
run: |
Expand All @@ -52,16 +52,16 @@ jobs:
- name: Checkout Source code
uses: actions/checkout@v2

- name: Use Node.js 15
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16

- name: Cache node_modules
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-15-modules-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-16-modules-${{ hashFiles('**/yarn.lock') }}

- name: EditorConfig Lint
uses: docker://mstruebing/editorconfig-checker:2.3.5@sha256:b78daacf0049058ca85afddbbed6c53bd3bc2a24d3dd0b2363e34ebb4463dee1
Expand All @@ -86,7 +86,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [ 12, 14, 15, 16.1 ]
node-version: [ 12, 14, 15, 16 ]
steps:
- name: Checkout Source code
uses: actions/checkout@v2
Expand Down Expand Up @@ -165,16 +165,16 @@ jobs:
fetch-depth: 0 # we need to pull everything to have correct dev version suffix
ref: master

- name: Use Node.js 15
- name: Use Node.js 16
uses: actions/setup-node@v2
with:
node-version: 15
node-version: 16

- name: Cache node_modules
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-15-modules-${{ hashFiles('**/yarn.lock') }}
key: ${{ runner.os }}-16-modules-${{ hashFiles('**/yarn.lock') }}

- name: Install libkrb5-dev (for run-rs)
run: |
Expand Down

0 comments on commit dd6f792

Please sign in to comment.