padawan - silence an error for deactivating phones #213
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: Typescript | |
| on: [push] | |
| jobs: | |
| tsc: | |
| runs-on: ubuntu-latest | |
| env: | |
| RAILS_ENV: test | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22.21.1" | |
| cache: "npm" | |
| - name: Install JS dependencies | |
| run: npm install --legacy-peer-deps | |
| - name: Run Typescript tsc | |
| run: npx tsc --project tsconfig.json |