Skip to content

Commit

Permalink
use only one node version for GitHub workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kolorfilm committed Mar 1, 2024
1 parent 8c1206f commit 23b86ec
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/reusable-lint-and-test-and-build-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,15 @@ jobs:
run:
working-directory: ./

strategy:
matrix:
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v4

- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
node-version: '20.x'
cache: 'npm'
cache-dependency-path: package-lock.json

- name: Install Dependencies
run: npm install
Expand Down

0 comments on commit 23b86ec

Please sign in to comment.