Skip to content

Commit

Permalink
Chore: Ignore changes to .yarn during CI run. Run tsc later during CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
SBoudrias committed Aug 5, 2023
1 parent 4ad31ef commit a07dbc8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ jobs:
CI: true
FORCE_COLOR: 1

- name: Typescript
run: yarn lerna run tsc
- name: Eslint
run: yarn eslint .
- name: Validate package setup
run: |
yarn setup
yarn prettier --write .
git diff --exit-code
git diff --exit-code -- . :^.yarn
- name: Typescript
run: yarn lerna run tsc
- name: Test packages
run: yarn vitest --run --coverage
- name: Integration tests
Expand Down

0 comments on commit a07dbc8

Please sign in to comment.