Skip to content

Commit

Permalink
ci: update to use actions-yarn@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
yeonjuan committed Nov 23, 2023
1 parent 075c8b9 commit 102475e
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,29 @@ jobs:
node-version: 16

- name: Install
run: yarn install --frozen-lockfile
uses: borales/actions-yarn@v4
with:
cmd: install
- name: Build
run: yarn build
uses: borales/actions-yarn@v4
with:
cmd: build
- name: Unit Tests
run: yarn test
uses: borales/actions-yarn@v4
with:
cmd: yarn test
- name: Check Sepll
run: yarn check:spell
uses: borales/actions-yarn@v4
with:
cmd: check:spell
- name: Check Format
run: yarn check:format
uses: borales/actions-yarn@v4
with:
cmd: check:format
- name: Check Types
run: yarn check:ts
uses: borales/actions-yarn@v4
with:
cmd: check:ts

- name: Code coverage report
uses: codecov/codecov-action@v2
Expand Down

0 comments on commit 102475e

Please sign in to comment.