This repository was archived by the owner on Feb 10, 2026. It is now read-only.
Release 0.24.0 #1562
Workflow file for this run
This file contains hidden or 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: All packages - Lint & Types | |
| on: | |
| pull_request: | |
| jobs: | |
| types_and_lint: | |
| runs-on: macos-14 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Use Node 22 🛎️ | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.x | |
| cache: "npm" | |
| - name: Use corepack | |
| run: corepack enable | |
| - name: Install system deps 🍎 | |
| run: brew install swift-format xcbeautify ktlint | |
| - name: Install node dependencies ⬇️ | |
| run: yarn | |
| - name: Build Types 📦 | |
| run: yarn build | |
| - name: Check types 🚓 | |
| run: yarn typecheck | |
| - name: Run linter (and check formatting) 👮 | |
| run: yarn lint | |
| - name: Run docs generation 📘 | |
| run: yarn docs |