Skip to content

Commit

Permalink
chore(pipeline): use npm clean-install (#180)
Browse files Browse the repository at this point in the history
* chore(pipeline): use npm clean-install

* Update validation.yml

* Update validation.yml
  • Loading branch information
CFenner committed Aug 14, 2023
1 parent 147d295 commit d9b07fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -34,15 +34,15 @@ 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:
runs-on: ubuntu-latest
name: 'Stylelint'
strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [16.x]
steps:
- name: Checkout Code
uses: actions/checkout@v3
Expand All @@ -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

0 comments on commit d9b07fc

Please sign in to comment.