Skip to content

Commit

Permalink
feat(typescript): use yarn on github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
maximedasilva committed Feb 29, 2024
1 parent a17869e commit ffb045d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache: yarn
- name: Install deps
run: npm install
run: yarn install
- name: Eslint check
run: npm run lint
run: yarn lint

test:
name: Unit tests
Expand All @@ -34,11 +34,11 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache: yarn
- name: Install deps
run: npm install
run: yarn install
- name: Test
run: npm run test
run: yarn test
- name: Codecov upload
uses: codecov/codecov-action@v4.1.0
with:
Expand All @@ -54,8 +54,8 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
cache: yarn
- name: Install deps
run: npm install
run: yarn install
- name: Build
run: npm run build
run: yarn build

0 comments on commit ffb045d

Please # to comment.