Fix deploy workflow. #29
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: 🔎 Check | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
concurrency: ${{ github.workflow }} - ${{ github.ref }} | |
jobs: | |
Typecheck: | |
name: Check-Types | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Install dependencies | |
run: pnpm install | |
- name: App Typecheck | |
run: pnpm run typecheck-app | |
- name: Editor Typecheck | |
run: pnpm run typecheck-editor | |
- name: UI Library Typecheck | |
run: pnpm run typecheck-editor | |
- name: Functions Typecheck | |
run: pnpm run typecheck-editor |