Skip to content

Commit

Permalink
fix: update ci (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaGOs92 authored Aug 9, 2024
1 parent d7d2258 commit 6ef9327
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ jobs:
ci:
name: CI
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Setup Node
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 'lts/*'
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install dependencies
run: yarn
Expand Down

0 comments on commit 6ef9327

Please sign in to comment.