Skip to content

feat: tekken 8 support #10

feat: tekken 8 support

feat: tekken 8 support #10

Workflow file for this run

name: Lint typescript
on:
pull_request:
paths:
- "**.ts"
- "**.tsx"
jobs:
ts-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1
- uses: actions/cache@v3
with:
path: ~/gui/node_modules
key: ${{ runner.os }}-${{ hashFiles('./gui/bun.lockb') }}
if: steps.cache-deps.outputs.cache-hit != 'true'
- run: bun install
if: steps.cache-deps.outputs.cache-hit != 'true'
- run: bun tsc
- run: bun format:check