Skip to content

Removed the backend testing action not sure why it fails in CI/CD but… #1191

Removed the backend testing action not sure why it fails in CI/CD but…

Removed the backend testing action not sure why it fails in CI/CD but… #1191

Workflow file for this run

name: CI Check
on: push
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: '20.x'
- name: Install Dependencies
run: npm install
- name: Run Linter
run: npm run lint
- name: Run Prettier
run: npm run format:check
- name: Run Type Check
run: npm run type-check