Skip to content

Commit

Permalink
shorten template check
Browse files Browse the repository at this point in the history
  • Loading branch information
elevatebart committed Nov 6, 2023
1 parent b71a11e commit be0c898
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions .github/workflows/template-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,23 @@ jobs:
env:
CI: true

- name: Build Components
run: yarn build:components

- name: Check global types
run: |
yarn vue-tsc --noEmit -p .
yarn tsc --noEmit --project ./tsconfig.react.json
yarn vue-tsc --noEmit --project ./tsconfig.vue.json
- name: Build Component for Vue
run: yarn workspace @cypress-design/constants-component-name build

- name: Build Component for Vue
run: yarn workspace @cypress-design/vue-component-name build

- name: Build Component for React
run: yarn workspace @cypress-design/react-component-name build

- name: Types docs
run: yarn vue-tsc --noEmit -p .

- name: Types Vue
run: yarn vue-tsc --noEmit --project ./tsconfig.vue.json

- name: Types React
run: yarn tsc --noEmit --project ./tsconfig.react.json

- name: Lint all files
run: yarn eslint .
Expand Down

0 comments on commit be0c898

Please sign in to comment.