update dependencies #1516
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@v4 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- name: Install pnpm 📦 | |
uses: pnpm/action-setup@v4 | |
# use version from package.json#packageManager field | |
- name: Install Dependencies 📥 | |
run: | | |
pnpm install | |
- name: Lint, Fmt, and Type Check 🧹 | |
run: | # Run the lint, fmt and type check scripts; typecheck will run build as well | |
pnpm run typecheck | |
pnpm run lint | |
pnpm run fmt:check | |
- name: Test 🧪 | |
run: | # Run the tests | |
pnpm run test | |
- name: Diff Docs Routes Codegen 🕵️ | |
run: | # Diff the docs routes codegen | |
pnpm --filter www run gen:docs-routes | |
git diff --exit-code |