From d3e5098fb4a06393eb47c9ec45a10d7a8e9b2266 Mon Sep 17 00:00:00 2001 From: timdeschryver <28659384+timdeschryver@users.noreply.github.com> Date: Sat, 15 May 2021 17:13:44 +0200 Subject: [PATCH 1/4] ci: fix release condition --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 90efc756..d97a708a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/checkout@v2 - - name: use Node.js ${{ matrix.node-version }} + - name: use Node.js ${{ matrix.node-version }} on ${{ matrix.os }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} From e7960c80fb05766e7b6dba07150e36cc776e1241 Mon Sep 17 00:00:00 2001 From: timdeschryver <28659384+timdeschryver@users.noreply.github.com> Date: Sat, 15 May 2021 17:15:34 +0200 Subject: [PATCH 2/4] matrix node --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d97a708a..f8428adf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: actions/checkout@v2 - - name: use Node.js ${{ matrix.node-version }} on ${{ matrix.os }} + - name: use Node.js ${{ matrix.node }} on ${{ matrix.os }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} From 06e4b7339d2c717980a3995e97844c67d21a7892 Mon Sep 17 00:00:00 2001 From: timdeschryver <28659384+timdeschryver@users.noreply.github.com> Date: Sat, 15 May 2021 17:17:37 +0200 Subject: [PATCH 3/4] fix node version --- .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 f8428adf..22361d48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,12 +11,12 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - node: [12, 14, 16] + node-version: [12, 14, 16] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - - name: use Node.js ${{ matrix.node }} on ${{ matrix.os }} + - name: use Node.js ${{ matrix.node-version }} on ${{ matrix.os }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} From 15b11e0a7c7f861365feb9f8cddc0f53337e31b6 Mon Sep 17 00:00:00 2001 From: timdeschryver <28659384+timdeschryver@users.noreply.github.com> Date: Sat, 15 May 2021 17:38:27 +0200 Subject: [PATCH 4/4] ci: remove node 16 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22361d48..2f733487 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest] - node-version: [12, 14, 16] + node-version: [12, 14] runs-on: ${{ matrix.os }} steps: