Skip to content

Commit

Permalink
chore: remove matrix from workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
martines3000 committed Apr 8, 2024
1 parent cab3ec8 commit 83001ed
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ name: Build, Lint and Test
on: push
jobs:
build:
strategy:
matrix:
version: ['lts/*']
timeout-minutes: 7
runs-on: ubuntu-latest
steps:
Expand All @@ -14,14 +11,14 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}
node-version: 'lts/*'

- name: Cache node modules
uses: actions/cache@v4
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: cache-${{ runner.os }}-${{ matrix.version }}-${{ hashFiles('**/package-lock.json') }}
key: cache-${{ runner.os }}-${{ hashFiles('**/package-lock.json') }}

- name: Install dependencies
run: npm ci
Expand Down

0 comments on commit 83001ed

Please sign in to comment.