Skip to content

chore: tsconfig

chore: tsconfig #270

Workflow file for this run

name: Build
on:
workflow_dispatch:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
check:
name: Build
runs-on: ubuntu-latest
steps:
- name: check out code 🛎
uses: actions/checkout@v4
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: "https://registry.npmjs.org"
cache: "npm"
cache-dependency-path: "**/package-lock.json"
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run check:lint
- name: Run Prettier
run: npm run check:prettier
- name: Run Build
run: npm run build