Skip to content

Commit

Permalink
ci(lint): switch from npm to yarn for dependency management and linting
Browse files Browse the repository at this point in the history
  • Loading branch information
IdoBouskila committed Nov 29, 2024
1 parent c0ff9ad commit ba86b07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
cache: 'yarn'

- name: Install dependencies
run: npm ci
run: yarn install

- name: Run linter
run: npm run lint
run: yarn lint

0 comments on commit ba86b07

Please sign in to comment.