Skip to content

Commit

Permalink
Use npm instead of yarn in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Eddasol committed Dec 20, 2024
1 parent d5fbc66 commit 9c99c12
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/frontend_lint_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install modules
run: yarn
run: npm ci
- name: Run ESLint
run: npx eslint . --ext .js,.jsx,.ts,.tsx --max-warnings=0

Expand All @@ -73,6 +73,6 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install modules
run: yarn
run: npm ci
- name: Run Unused Exports Check
run: ./node_modules/.bin/ts-unused-exports tsconfig.json

0 comments on commit 9c99c12

Please sign in to comment.