Remove Lucide-React
#310
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 Checks | |
on: push | |
jobs: | |
ci-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v2.3.1 | |
with: | |
persist-credentials: false | |
- name: Install Node.js 20 📗 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Install pnpm 📦 | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Install Dependencies 📥 | |
run: | # Install npm packages | |
pnpm install | |
- name: Lint and Type Check 🧹 | |
run: | # Run the lint and type check | |
pnpm run typecheck | |
pnpm run fmt:check | |
pnpm run lint | |
- name: Test 🧪 | |
run: | # Run the tests | |
pnpm run test | |
- name: Ensure Package is Publishable 🧐 | |
run: | # Run the prepublish hook to ensure the package is publishable | |
pnpm run prepublishOnly | |
- name: Diff Docs Routes Codegen 🕵️ | |
run: | # Diff the docs routes codegen | |
pnpm run gen:docs-routes | |
git diff --exit-code |