Fix hangout meeting shell feedback #1
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: CI — App | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "app/**" | |
| jobs: | |
| app-lint: | |
| name: app-lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: "npm" | |
| cache-dependency-path: app/package-lock.json | |
| - name: Install dependencies | |
| working-directory: app | |
| run: npm ci | |
| - name: Run ESLint | |
| working-directory: app | |
| run: npm run lint | |
| app-type-check: | |
| name: app-type-check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| cache: "npm" | |
| cache-dependency-path: app/package-lock.json | |
| - name: Install dependencies | |
| working-directory: app | |
| run: npm ci | |
| - name: TypeScript type check | |
| working-directory: app | |
| run: npx tsc --noEmit |