[ts-sdk][demos] Set up pnpm workspaces, update eslint config, update … #203
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: TS SDK check | |
on: | |
push: | |
branches: [master] | |
paths: | |
- "ts/**" | |
pull_request: | |
types: [opened, synchronize] | |
paths: | |
- "ts/**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Install project dependencies | |
working-directory: ./ts | |
run: pnpm install --frozen-lockfile | |
- name: Build | |
working-directory: ./ts | |
run: pnpm run build:all | |
- name: Lint code | |
working-directory: ./ts | |
run: pnpm run lint | |
- name: Typecheck code | |
working-directory: ./ts | |
run: pnpm run typecheck |