Skip to content

Commit

Permalink
Update verify.yml to npm useage
Browse files Browse the repository at this point in the history
  • Loading branch information
saertna committed Aug 26, 2023
1 parent 053e90c commit 85e2ea7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@ jobs:
- uses: actions/checkout@v3

- name: Install modules
run: yarn
run: npm install

- name: Run build
run: yarn run build
run: npm run build

- name: Run TypeScript compiler ESLint
run: yarn run lint
run: npm run lint

- name: Run Markdown Lint
run: yarn run lint:markdown
run: npm run lint:markdown

- name: Run Jest
run: yarn run test
run: npm run test

- name: Archive verified build
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 85e2ea7

Please sign in to comment.