Skip to content

fix GH action

fix GH action #7

Workflow file for this run

name: "Static Checks"
on:
push:
branches:
- main
pull_request:
branches:
- "**"
jobs:
setup:
name: Setup Dependencies
uses: ./.github/actions/setup

Check failure on line 14 in .github/workflows/static-checks.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/static-checks.yml

Invalid workflow file

invalid value workflow reference: no version specified
lint:
name: ESLint Check
runs-on: ubuntu-latest
needs: setup
steps:
- name: Run Linter
run: npm run lint
tsc:
name: TS Types Check
runs-on: ubuntu-latest
needs: setup
steps:
- name: Run Tsc
run: npm run type-check
build:
name: Build App Check
runs-on: ubuntu-latest
needs: setup
steps:
- name: Build App
run: npm run build