From d9b07fcae2e6bf17c8b23bc9a26cc9a768643e1d Mon Sep 17 00:00:00 2001 From: Christopher Fenner <9592452+CFenner@users.noreply.github.com> Date: Mon, 14 Aug 2023 11:21:23 +0200 Subject: [PATCH] chore(pipeline): use npm clean-install (#180) * chore(pipeline): use npm clean-install * Update validation.yml * Update validation.yml --- .github/workflows/validation.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml index e1f24580..3f1661b3 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 @@ -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: @@ -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 @@ -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