From d9aee4eadf466fd86891dbe7454e8926f6b32b96 Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Thu, 15 Sep 2022 12:03:52 +0200 Subject: [PATCH 1/2] add node versions --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 406a565..deef40d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,6 +50,18 @@ jobs: run: npm ci - run: npm run lint check-tests: + strategy: + matrix: + include: + - name: Node 12 + NODE_VERSION: 12 + - name: Node 14 + NODE_VERSION: 14 + - name: Node 16 + NODE_VERSION: 16 + - name: Node 18 + NODE_VERSION: 18 + fail-fast: false name: Tests timeout-minutes: 5 runs-on: ubuntu-18.04 From 0cded0861883228c4b62dda78aba9f6f4e937c1f Mon Sep 17 00:00:00 2001 From: Manuel Trezza <5673677+mtrezza@users.noreply.github.com> Date: Thu, 15 Sep 2022 12:06:06 +0200 Subject: [PATCH 2/2] use latest ubuntu distro --- .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 deef40d..113f89f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: check-circular: name: Circular Dependencies timeout-minutes: 5 - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.NODE_VERSION }} @@ -32,7 +32,7 @@ jobs: check-lint: name: Lint timeout-minutes: 5 - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.NODE_VERSION }} @@ -64,7 +64,7 @@ jobs: fail-fast: false name: Tests timeout-minutes: 5 - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Use Node.js