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 19, 2024
1 parent cb00d7b commit 6152f9e
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 src

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 6152f9e

Please sign in to comment.