fix: metastate-requested-changes #809
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: "Check Code" | |
on: | |
pull_request: | |
push: | |
branches: | |
- "dev" | |
- "main" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.x | |
- name: Install Dependencies | |
run: | | |
echo "installing pnpm" | |
npm install -g pnpm | |
echo "installing deps for packages" | |
pnpm i | |
- name: Check Code | |
run: pnpm check |