Skip to content

Commit

Permalink
ci: use yarn not npm
Browse files Browse the repository at this point in the history
  • Loading branch information
dsanders11 committed Oct 4, 2024
1 parent b3e7d84 commit e5d9c34
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ jobs:
node-version: lts/*
- name: Lint
run: |
npm install
npm run lint
yarn install
yarn lint
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # tag: v4.0.4
with:
node-version: lts/*
- name: npm install, build, and test
- name: yarn install, build, and test
run: |
npm install
npm test
yarn install
yarn test

0 comments on commit e5d9c34

Please sign in to comment.