Skip to content

Commit

Permalink
feat(vite): build packages before test
Browse files Browse the repository at this point in the history
  • Loading branch information
timofei-iatsenko committed Mar 16, 2023
1 parent 9015125 commit de708c6
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/main-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
- name: Install dependencies if needed
run: yarn install --network-timeout 1000000

- name: Build packages
run: yarn release:build

- name: Unit Testing
run: yarn test:ci

Expand All @@ -54,18 +57,18 @@ jobs:
- name: Install dependencies if needed
run: yarn install

- name: Unit Testing
run: yarn test:ci:coverage
- name: Check Prettier Formatting
run: yarn prettier:check

- name: Linting & Types
run: yarn lint:all

- name: Check Prettier Formatting
run: yarn prettier:check

- name: Build packages
run: yarn release:build

- name: Unit Testing
run: yarn test:ci:coverage

- name: Test Public Typings
run: yarn test:tsd

Expand Down

0 comments on commit de708c6

Please sign in to comment.