Skip to content

Commit

Permalink
chore: pr workflow ordering change
Browse files Browse the repository at this point in the history
  • Loading branch information
jerzy-mankowski committed Dec 16, 2024
1 parent 33ce74e commit db1eaa0
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,17 @@ jobs:
- name: Installing dependencies
run: npm ci

- name: Running tests
run: npm run test
- name: Running typecheck
continue-on-error: true
run: npm run typecheck

- name: Running lint
continue-on-error: true
run: npm run lint

- name: Running typecheck
run: npm run typecheck
- name: Running tests
continue-on-error: true
run: npm run test

- name: Running build
run: npm run build

0 comments on commit db1eaa0

Please sign in to comment.