refactor: remove legacy components, use typescript, cleanups #29
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: | |
jobs: | |
typecheck: | |
name: Typecheck | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
env: | |
GH_PACKAGE_REGISTRY_TOKEN: ${{ secrets.GH_PACKAGE_REGISTRY_TOKEN }} | |
concurrency: | |
group: ci-typecheck-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v3 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'yarn' | |
- name: 📥 Install dependencies | |
run: yarn | |
- name: 📦 Build packages | |
run: yarn build | |
- name: 👕 Lint | |
run: yarn lint | |
- name: 🔖 Typecheck | |
run: yarn typecheck | |
- name: ✅ Test | |
run: yarn test |