From 6c3d47ee8724d8654b675365a5f65ba258f62ed9 Mon Sep 17 00:00:00 2001 From: Christopher Fenner <9592452+CFenner@users.noreply.github.com> Date: Mon, 14 Aug 2023 11:02:17 +0200 Subject: [PATCH 1/3] chore(pipeline): use npm clean-install --- .github/workflows/validation.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml index e1f2458..4606ddc 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/validation.yml @@ -34,7 +34,7 @@ jobs: node-version: ${{ matrix.node-version }} cache: "npm" - name: Install Dependencies - run: npm install + run: npm clean-install - name: Validate JS Sources run: npm run validate:js stylelint: @@ -52,7 +52,7 @@ jobs: node-version: ${{ matrix.node-version }} cache: "npm" - name: Install Dependencies - run: npm install + run: npm clean-install - name: Validate CSS Sources run: npm run validate:css From d5f3124bf5d4191d684b1e74f2d9f41b986c41a0 Mon Sep 17 00:00:00 2001 From: Christopher Fenner <9592452+CFenner@users.noreply.github.com> Date: Mon, 14 Aug 2023 11:12:26 +0200 Subject: [PATCH 2/3] Update validation.yml --- .github/workflows/validation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml index 4606ddc..33c5ec6 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/validation.yml @@ -24,7 +24,7 @@ jobs: name: 'ESLint' strategy: matrix: - node-version: [14.x, 16.x] + node-version: [16.x] steps: - name: Checkout Code uses: actions/checkout@v3 From 77a510c37e0a0618ec9095e8e63013f09fcde4fe Mon Sep 17 00:00:00 2001 From: Christopher Fenner <9592452+CFenner@users.noreply.github.com> Date: Mon, 14 Aug 2023 11:20:49 +0200 Subject: [PATCH 3/3] Update validation.yml --- .github/workflows/validation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml index 33c5ec6..3f1661b 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/validation.yml @@ -42,7 +42,7 @@ jobs: name: 'Stylelint' strategy: matrix: - node-version: [14.x, 16.x] + node-version: [16.x] steps: - name: Checkout Code uses: actions/checkout@v3