From 13dfc0367b5b30855689586218f799871572624e Mon Sep 17 00:00:00 2001 From: Maximilian Franzke Date: Mon, 20 Feb 2023 20:18:39 +0100 Subject: [PATCH 1/4] refactor: set pipelines and local node equally --- .github/workflows/00-init.yml | 14 ++++++++++++++ .github/workflows/00-scan-secrets.yml | 14 ++++++++++++++ .github/workflows/01-build.yml | 14 ++++++++++++++ .github/workflows/01-get-publish-version.yml | 14 ++++++++++++++ .github/workflows/01-lint.yml | 14 ++++++++++++++ .github/workflows/01-test.yml | 14 ++++++++++++++ .github/workflows/02-deploy-gh-pages.yml | 14 ++++++++++++++ .github/workflows/03-publish-packages.yml | 14 ++++++++++++++ .github/workflows/99-add-url-comment.yml | 14 ++++++++++++++ .github/workflows/99-auto-update-pr.yml | 14 ++++++++++++++ .github/workflows/99-codeql-analysis.yml | 14 ++++++++++++++ .github/workflows/99-dependency-review.yml | 15 +++++++++++++++ .github/workflows/cleanup.yml | 14 ++++++++++++++ 13 files changed, 183 insertions(+) diff --git a/.github/workflows/00-init.yml b/.github/workflows/00-init.yml index dca4a2b2f9..f1a498e565 100644 --- a/.github/workflows/00-init.yml +++ b/.github/workflows/00-init.yml @@ -14,6 +14,20 @@ jobs: - name: ⬇️ Checkout repo uses: actions/checkout@v3 + - name: Setup node equally to our local development version + if: steps.npm-cache.outputs.cache-hit != 'true' + # pick the Node version to use and install it + # https://github.com/actions/setup-node + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Display node and npm version + if: steps.npm-cache.outputs.cache-hit != 'true' + run: | + node --version + npm --version + - name: 🔄 Init Cache Default uses: ./.github/actions/npm-cache diff --git a/.github/workflows/00-scan-secrets.yml b/.github/workflows/00-scan-secrets.yml index 29149c7cf6..dda9282f63 100644 --- a/.github/workflows/00-scan-secrets.yml +++ b/.github/workflows/00-scan-secrets.yml @@ -12,6 +12,20 @@ jobs: with: fetch-depth: 0 + - name: Setup node equally to our local development version + if: steps.npm-cache.outputs.cache-hit != 'true' + # pick the Node version to use and install it + # https://github.com/actions/setup-node + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Display node and npm version + if: steps.npm-cache.outputs.cache-hit != 'true' + run: | + node --version + npm --version + - name: ↔ Extract branch name uses: ./.github/actions/extract-branch id: extract_branch diff --git a/.github/workflows/01-build.yml b/.github/workflows/01-build.yml index 0ab806ed20..84d46199ea 100644 --- a/.github/workflows/01-build.yml +++ b/.github/workflows/01-build.yml @@ -11,6 +11,20 @@ jobs: - name: ⬇️ Checkout repo uses: actions/checkout@v3 + - name: Setup node equally to our local development version + if: steps.npm-cache.outputs.cache-hit != 'true' + # pick the Node version to use and install it + # https://github.com/actions/setup-node + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Display node and npm version + if: steps.npm-cache.outputs.cache-hit != 'true' + run: | + node --version + npm --version + - name: 🔄 Init Cache uses: ./.github/actions/npm-cache diff --git a/.github/workflows/01-get-publish-version.yml b/.github/workflows/01-get-publish-version.yml index 39aa8e186d..8613b53e84 100644 --- a/.github/workflows/01-get-publish-version.yml +++ b/.github/workflows/01-get-publish-version.yml @@ -27,6 +27,20 @@ jobs: - name: ⬇ Checkout repo uses: actions/checkout@v3 + - name: Setup node equally to our local development version + if: steps.npm-cache.outputs.cache-hit != 'true' + # pick the Node version to use and install it + # https://github.com/actions/setup-node + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Display node and npm version + if: steps.npm-cache.outputs.cache-hit != 'true' + run: | + node --version + npm --version + - name: 🔄 Init Cache uses: ./.github/actions/npm-cache diff --git a/.github/workflows/01-lint.yml b/.github/workflows/01-lint.yml index 50c94b99a6..ea24476511 100644 --- a/.github/workflows/01-lint.yml +++ b/.github/workflows/01-lint.yml @@ -11,6 +11,20 @@ jobs: - name: ⬇️ Checkout repo uses: actions/checkout@v3 + - name: Setup node equally to our local development version + if: steps.npm-cache.outputs.cache-hit != 'true' + # pick the Node version to use and install it + # https://github.com/actions/setup-node + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Display node and npm version + if: steps.npm-cache.outputs.cache-hit != 'true' + run: | + node --version + npm --version + - name: 🔄 Init Cache uses: ./.github/actions/npm-cache diff --git a/.github/workflows/01-test.yml b/.github/workflows/01-test.yml index 4397661c1b..42a75a11ad 100644 --- a/.github/workflows/01-test.yml +++ b/.github/workflows/01-test.yml @@ -11,6 +11,20 @@ jobs: - name: ⬇️ Checkout repo uses: actions/checkout@v3 + - name: Setup node equally to our local development version + if: steps.npm-cache.outputs.cache-hit != 'true' + # pick the Node version to use and install it + # https://github.com/actions/setup-node + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Display node and npm version + if: steps.npm-cache.outputs.cache-hit != 'true' + run: | + node --version + npm --version + - name: 🔄 Init Cache uses: ./.github/actions/npm-cache diff --git a/.github/workflows/02-deploy-gh-pages.yml b/.github/workflows/02-deploy-gh-pages.yml index 987d2aedbe..e40ec457e0 100644 --- a/.github/workflows/02-deploy-gh-pages.yml +++ b/.github/workflows/02-deploy-gh-pages.yml @@ -23,6 +23,20 @@ jobs: - name: ⬇ Checkout repo uses: actions/checkout@v3 + - name: Setup node equally to our local development version + if: steps.npm-cache.outputs.cache-hit != 'true' + # pick the Node version to use and install it + # https://github.com/actions/setup-node + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Display node and npm version + if: steps.npm-cache.outputs.cache-hit != 'true' + run: | + node --version + npm --version + - name: 🔄 Init Cache uses: ./.github/actions/npm-cache diff --git a/.github/workflows/03-publish-packages.yml b/.github/workflows/03-publish-packages.yml index 7355c4f97a..fbcbfc56ae 100644 --- a/.github/workflows/03-publish-packages.yml +++ b/.github/workflows/03-publish-packages.yml @@ -24,6 +24,20 @@ jobs: - name: ⬇ Checkout repo uses: actions/checkout@v3 + - name: Setup node equally to our local development version + if: steps.npm-cache.outputs.cache-hit != 'true' + # pick the Node version to use and install it + # https://github.com/actions/setup-node + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Display node and npm version + if: steps.npm-cache.outputs.cache-hit != 'true' + run: | + node --version + npm --version + - name: 🔄 Init Cache uses: ./.github/actions/npm-cache diff --git a/.github/workflows/99-add-url-comment.yml b/.github/workflows/99-add-url-comment.yml index d1b4a7f31c..cce1f5ce80 100644 --- a/.github/workflows/99-add-url-comment.yml +++ b/.github/workflows/99-add-url-comment.yml @@ -11,6 +11,20 @@ jobs: - name: ⬇ Checkout repo uses: actions/checkout@v3 + - name: Setup node equally to our local development version + if: steps.npm-cache.outputs.cache-hit != 'true' + # pick the Node version to use and install it + # https://github.com/actions/setup-node + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Display node and npm version + if: steps.npm-cache.outputs.cache-hit != 'true' + run: | + node --version + npm --version + - name: 📡 Add comment uses: actions/github-script@v6 with: diff --git a/.github/workflows/99-auto-update-pr.yml b/.github/workflows/99-auto-update-pr.yml index cc205dbcab..baf30cdece 100644 --- a/.github/workflows/99-auto-update-pr.yml +++ b/.github/workflows/99-auto-update-pr.yml @@ -22,6 +22,20 @@ jobs: - name: ⬇️ Checkout repo uses: actions/checkout@v3 + - name: Setup node equally to our local development version + if: steps.npm-cache.outputs.cache-hit != 'true' + # pick the Node version to use and install it + # https://github.com/actions/setup-node + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Display node and npm version + if: steps.npm-cache.outputs.cache-hit != 'true' + run: | + node --version + npm --version + - name: ↔ Create Pull Request uses: actions/github-script@v6 id: create-pr diff --git a/.github/workflows/99-codeql-analysis.yml b/.github/workflows/99-codeql-analysis.yml index 6bcca774a4..0e43d888f9 100644 --- a/.github/workflows/99-codeql-analysis.yml +++ b/.github/workflows/99-codeql-analysis.yml @@ -16,6 +16,20 @@ jobs: - name: ⬇ Checkout repo uses: actions/checkout@v3 + - name: Setup node equally to our local development version + if: steps.npm-cache.outputs.cache-hit != 'true' + # pick the Node version to use and install it + # https://github.com/actions/setup-node + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Display node and npm version + if: steps.npm-cache.outputs.cache-hit != 'true' + run: | + node --version + npm --version + - name: 🔄 Initialize CodeQL uses: github/codeql-action/init@v2 with: diff --git a/.github/workflows/99-dependency-review.yml b/.github/workflows/99-dependency-review.yml index d7af7654bf..c9b50e4a28 100644 --- a/.github/workflows/99-dependency-review.yml +++ b/.github/workflows/99-dependency-review.yml @@ -9,5 +9,20 @@ jobs: steps: - name: ⬇ Checkout repo uses: actions/checkout@v3 + + - name: Setup node equally to our local development version + if: steps.npm-cache.outputs.cache-hit != 'true' + # pick the Node version to use and install it + # https://github.com/actions/setup-node + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Display node and npm version + if: steps.npm-cache.outputs.cache-hit != 'true' + run: | + node --version + npm --version + - name: 🔎 Dependency Review uses: actions/dependency-review-action@v3 diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml index 57c59932a5..c636393c9d 100644 --- a/.github/workflows/cleanup.yml +++ b/.github/workflows/cleanup.yml @@ -13,6 +13,20 @@ jobs: - name: ⬇ Checkout repo uses: actions/checkout@v3 + - name: Setup node equally to our local development version + if: steps.npm-cache.outputs.cache-hit != 'true' + # pick the Node version to use and install it + # https://github.com/actions/setup-node + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Display node and npm version + if: steps.npm-cache.outputs.cache-hit != 'true' + run: | + node --version + npm --version + - name: 📥 Get gh-pages tar run: wget -q https://github.com/db-ui/core/tarball/gh-pages From ca44937404691b303f4dda57adb0f6ede474f65c Mon Sep 17 00:00:00 2001 From: Maximilian Franzke Date: Wed, 22 Feb 2023 06:09:46 +0100 Subject: [PATCH 2/4] refactor: moved node version setup to init cache --- .github/actions/npm-cache/action.yml | 13 +++++++++++++ .github/workflows/00-init.yml | 14 -------------- .github/workflows/00-scan-secrets.yml | 14 -------------- .github/workflows/01-build.yml | 14 -------------- .github/workflows/01-get-publish-version.yml | 14 -------------- .github/workflows/01-lint.yml | 14 -------------- .github/workflows/01-test.yml | 14 -------------- .github/workflows/02-deploy-gh-pages.yml | 14 -------------- .github/workflows/03-publish-packages.yml | 14 -------------- .github/workflows/99-add-url-comment.yml | 14 -------------- .github/workflows/99-auto-update-pr.yml | 14 -------------- .github/workflows/99-codeql-analysis.yml | 14 -------------- .github/workflows/99-dependency-review.yml | 14 -------------- .github/workflows/cleanup.yml | 14 -------------- 14 files changed, 13 insertions(+), 182 deletions(-) diff --git a/.github/actions/npm-cache/action.yml b/.github/actions/npm-cache/action.yml index 5649ef4126..fa644016f9 100644 --- a/.github/actions/npm-cache/action.yml +++ b/.github/actions/npm-cache/action.yml @@ -3,6 +3,19 @@ description: "Initialize NPM Cache" runs: using: "composite" steps: + - name: Setup Node version equally to our local development version + # pick the Node version to use and install it + # https://github.com/actions/setup-node + uses: actions/setup-node@v3 + with: + node-version: 16 + + - name: Display node and npm version + if: steps.npm-cache.outputs.cache-hit != 'true' + run: | + node --version + npm --version + - uses: actions/cache@v3 id: "npm-cache" # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true' with: diff --git a/.github/workflows/00-init.yml b/.github/workflows/00-init.yml index f1a498e565..dca4a2b2f9 100644 --- a/.github/workflows/00-init.yml +++ b/.github/workflows/00-init.yml @@ -14,20 +14,6 @@ jobs: - name: ⬇️ Checkout repo uses: actions/checkout@v3 - - name: Setup node equally to our local development version - if: steps.npm-cache.outputs.cache-hit != 'true' - # pick the Node version to use and install it - # https://github.com/actions/setup-node - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Display node and npm version - if: steps.npm-cache.outputs.cache-hit != 'true' - run: | - node --version - npm --version - - name: 🔄 Init Cache Default uses: ./.github/actions/npm-cache diff --git a/.github/workflows/00-scan-secrets.yml b/.github/workflows/00-scan-secrets.yml index dda9282f63..29149c7cf6 100644 --- a/.github/workflows/00-scan-secrets.yml +++ b/.github/workflows/00-scan-secrets.yml @@ -12,20 +12,6 @@ jobs: with: fetch-depth: 0 - - name: Setup node equally to our local development version - if: steps.npm-cache.outputs.cache-hit != 'true' - # pick the Node version to use and install it - # https://github.com/actions/setup-node - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Display node and npm version - if: steps.npm-cache.outputs.cache-hit != 'true' - run: | - node --version - npm --version - - name: ↔ Extract branch name uses: ./.github/actions/extract-branch id: extract_branch diff --git a/.github/workflows/01-build.yml b/.github/workflows/01-build.yml index 84d46199ea..0ab806ed20 100644 --- a/.github/workflows/01-build.yml +++ b/.github/workflows/01-build.yml @@ -11,20 +11,6 @@ jobs: - name: ⬇️ Checkout repo uses: actions/checkout@v3 - - name: Setup node equally to our local development version - if: steps.npm-cache.outputs.cache-hit != 'true' - # pick the Node version to use and install it - # https://github.com/actions/setup-node - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Display node and npm version - if: steps.npm-cache.outputs.cache-hit != 'true' - run: | - node --version - npm --version - - name: 🔄 Init Cache uses: ./.github/actions/npm-cache diff --git a/.github/workflows/01-get-publish-version.yml b/.github/workflows/01-get-publish-version.yml index 8613b53e84..39aa8e186d 100644 --- a/.github/workflows/01-get-publish-version.yml +++ b/.github/workflows/01-get-publish-version.yml @@ -27,20 +27,6 @@ jobs: - name: ⬇ Checkout repo uses: actions/checkout@v3 - - name: Setup node equally to our local development version - if: steps.npm-cache.outputs.cache-hit != 'true' - # pick the Node version to use and install it - # https://github.com/actions/setup-node - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Display node and npm version - if: steps.npm-cache.outputs.cache-hit != 'true' - run: | - node --version - npm --version - - name: 🔄 Init Cache uses: ./.github/actions/npm-cache diff --git a/.github/workflows/01-lint.yml b/.github/workflows/01-lint.yml index ea24476511..50c94b99a6 100644 --- a/.github/workflows/01-lint.yml +++ b/.github/workflows/01-lint.yml @@ -11,20 +11,6 @@ jobs: - name: ⬇️ Checkout repo uses: actions/checkout@v3 - - name: Setup node equally to our local development version - if: steps.npm-cache.outputs.cache-hit != 'true' - # pick the Node version to use and install it - # https://github.com/actions/setup-node - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Display node and npm version - if: steps.npm-cache.outputs.cache-hit != 'true' - run: | - node --version - npm --version - - name: 🔄 Init Cache uses: ./.github/actions/npm-cache diff --git a/.github/workflows/01-test.yml b/.github/workflows/01-test.yml index 42a75a11ad..4397661c1b 100644 --- a/.github/workflows/01-test.yml +++ b/.github/workflows/01-test.yml @@ -11,20 +11,6 @@ jobs: - name: ⬇️ Checkout repo uses: actions/checkout@v3 - - name: Setup node equally to our local development version - if: steps.npm-cache.outputs.cache-hit != 'true' - # pick the Node version to use and install it - # https://github.com/actions/setup-node - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Display node and npm version - if: steps.npm-cache.outputs.cache-hit != 'true' - run: | - node --version - npm --version - - name: 🔄 Init Cache uses: ./.github/actions/npm-cache diff --git a/.github/workflows/02-deploy-gh-pages.yml b/.github/workflows/02-deploy-gh-pages.yml index e40ec457e0..987d2aedbe 100644 --- a/.github/workflows/02-deploy-gh-pages.yml +++ b/.github/workflows/02-deploy-gh-pages.yml @@ -23,20 +23,6 @@ jobs: - name: ⬇ Checkout repo uses: actions/checkout@v3 - - name: Setup node equally to our local development version - if: steps.npm-cache.outputs.cache-hit != 'true' - # pick the Node version to use and install it - # https://github.com/actions/setup-node - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Display node and npm version - if: steps.npm-cache.outputs.cache-hit != 'true' - run: | - node --version - npm --version - - name: 🔄 Init Cache uses: ./.github/actions/npm-cache diff --git a/.github/workflows/03-publish-packages.yml b/.github/workflows/03-publish-packages.yml index fbcbfc56ae..7355c4f97a 100644 --- a/.github/workflows/03-publish-packages.yml +++ b/.github/workflows/03-publish-packages.yml @@ -24,20 +24,6 @@ jobs: - name: ⬇ Checkout repo uses: actions/checkout@v3 - - name: Setup node equally to our local development version - if: steps.npm-cache.outputs.cache-hit != 'true' - # pick the Node version to use and install it - # https://github.com/actions/setup-node - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Display node and npm version - if: steps.npm-cache.outputs.cache-hit != 'true' - run: | - node --version - npm --version - - name: 🔄 Init Cache uses: ./.github/actions/npm-cache diff --git a/.github/workflows/99-add-url-comment.yml b/.github/workflows/99-add-url-comment.yml index cce1f5ce80..d1b4a7f31c 100644 --- a/.github/workflows/99-add-url-comment.yml +++ b/.github/workflows/99-add-url-comment.yml @@ -11,20 +11,6 @@ jobs: - name: ⬇ Checkout repo uses: actions/checkout@v3 - - name: Setup node equally to our local development version - if: steps.npm-cache.outputs.cache-hit != 'true' - # pick the Node version to use and install it - # https://github.com/actions/setup-node - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Display node and npm version - if: steps.npm-cache.outputs.cache-hit != 'true' - run: | - node --version - npm --version - - name: 📡 Add comment uses: actions/github-script@v6 with: diff --git a/.github/workflows/99-auto-update-pr.yml b/.github/workflows/99-auto-update-pr.yml index baf30cdece..cc205dbcab 100644 --- a/.github/workflows/99-auto-update-pr.yml +++ b/.github/workflows/99-auto-update-pr.yml @@ -22,20 +22,6 @@ jobs: - name: ⬇️ Checkout repo uses: actions/checkout@v3 - - name: Setup node equally to our local development version - if: steps.npm-cache.outputs.cache-hit != 'true' - # pick the Node version to use and install it - # https://github.com/actions/setup-node - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Display node and npm version - if: steps.npm-cache.outputs.cache-hit != 'true' - run: | - node --version - npm --version - - name: ↔ Create Pull Request uses: actions/github-script@v6 id: create-pr diff --git a/.github/workflows/99-codeql-analysis.yml b/.github/workflows/99-codeql-analysis.yml index 0e43d888f9..6bcca774a4 100644 --- a/.github/workflows/99-codeql-analysis.yml +++ b/.github/workflows/99-codeql-analysis.yml @@ -16,20 +16,6 @@ jobs: - name: ⬇ Checkout repo uses: actions/checkout@v3 - - name: Setup node equally to our local development version - if: steps.npm-cache.outputs.cache-hit != 'true' - # pick the Node version to use and install it - # https://github.com/actions/setup-node - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Display node and npm version - if: steps.npm-cache.outputs.cache-hit != 'true' - run: | - node --version - npm --version - - name: 🔄 Initialize CodeQL uses: github/codeql-action/init@v2 with: diff --git a/.github/workflows/99-dependency-review.yml b/.github/workflows/99-dependency-review.yml index c9b50e4a28..57e9d50a3b 100644 --- a/.github/workflows/99-dependency-review.yml +++ b/.github/workflows/99-dependency-review.yml @@ -10,19 +10,5 @@ jobs: - name: ⬇ Checkout repo uses: actions/checkout@v3 - - name: Setup node equally to our local development version - if: steps.npm-cache.outputs.cache-hit != 'true' - # pick the Node version to use and install it - # https://github.com/actions/setup-node - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Display node and npm version - if: steps.npm-cache.outputs.cache-hit != 'true' - run: | - node --version - npm --version - - name: 🔎 Dependency Review uses: actions/dependency-review-action@v3 diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml index c636393c9d..57c59932a5 100644 --- a/.github/workflows/cleanup.yml +++ b/.github/workflows/cleanup.yml @@ -13,20 +13,6 @@ jobs: - name: ⬇ Checkout repo uses: actions/checkout@v3 - - name: Setup node equally to our local development version - if: steps.npm-cache.outputs.cache-hit != 'true' - # pick the Node version to use and install it - # https://github.com/actions/setup-node - uses: actions/setup-node@v3 - with: - node-version: 16 - - - name: Display node and npm version - if: steps.npm-cache.outputs.cache-hit != 'true' - run: | - node --version - npm --version - - name: 📥 Get gh-pages tar run: wget -q https://github.com/db-ui/core/tarball/gh-pages From 6c5dd761d61491160c81eff078a46fa60e2109ea Mon Sep 17 00:00:00 2001 From: Maximilian Franzke Date: Wed, 22 Feb 2023 06:15:31 +0100 Subject: [PATCH 3/4] refactor: removed the other unnecessary if condition --- .github/actions/npm-cache/action.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/actions/npm-cache/action.yml b/.github/actions/npm-cache/action.yml index fa644016f9..d7391ab6e4 100644 --- a/.github/actions/npm-cache/action.yml +++ b/.github/actions/npm-cache/action.yml @@ -11,7 +11,6 @@ runs: node-version: 16 - name: Display node and npm version - if: steps.npm-cache.outputs.cache-hit != 'true' run: | node --version npm --version From ea69c80cff4ca9eb688b2b578b2d408ceedd4275 Mon Sep 17 00:00:00 2001 From: Maximilian Franzke Date: Wed, 22 Feb 2023 06:18:23 +0100 Subject: [PATCH 4/4] fix: added missing property --- .github/actions/npm-cache/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/npm-cache/action.yml b/.github/actions/npm-cache/action.yml index d7391ab6e4..c0e609eb99 100644 --- a/.github/actions/npm-cache/action.yml +++ b/.github/actions/npm-cache/action.yml @@ -11,6 +11,7 @@ runs: node-version: 16 - name: Display node and npm version + shell: bash run: | node --version npm --version