Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ jobs:

- name: 'Install and Build'
run: |
yarn
npm ci
cd examples/vite-typescript-example
yarn
npm ci
cd -
yarn types
yarn lint
yarn build
npm run types
npm run lint
npm run build

- name: 'Run Tests'
run: CHROMIUM_BIN=$(which chrome) yarn test
run: CHROMIUM_BIN=$(which chrome) npm test

- name: 'Generate Documentation Website'
run: yarn docs:generate
run: npm run docs:generate

- name: Deploy Documentation Website 🚀
if: github.ref == 'refs/heads/master'
Expand Down
Loading