Skip to content

Commit

Permalink
ci(ts): use npm command instead of make
Browse files Browse the repository at this point in the history
  • Loading branch information
pplmx committed Aug 29, 2024
1 parent d521e88 commit c9af759
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,11 @@ jobs:
node-version: ${{ matrix.node }}
# cache: "npm"

- name: Init dependencies
run: make init

- name: Build
run: make build
run: |
npm i
npm run build
- name: Run tests
run: make test
- name: Test
run: npm test
{% endraw %}

0 comments on commit c9af759

Please sign in to comment.