inertia - fix eslint - https://github.com/t3-oss/create-t3-turbo/issu… #3
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: 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: "20.17.0" | |
cache: "npm" | |
- name: Install JS dependencies | |
run: npm install --legacy-peer-deps | |
- name: Run Typescript tsc | |
run: npx tsc --project tsconfig.json |