feat: added a testing app for ui-kit #313
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# without this setup-node errors on mismatched yarn versions | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
cache: 'yarn' | |
cache-dependency-path: yarn.lock | |
- run: yarn install --immutable | |
# Prepack so the linter and tests have access to the build exports of | |
# other packages' prepack. | |
- run: yarn workspaces foreach --all --topological run prepack | |
- run: yarn lint | |
- run: yarn test | |
- run: yarn docs | |
- run: yarn format --check |