Skip to content

fix : Implemented cheating detection patch for new sigils. #47

fix : Implemented cheating detection patch for new sigils.

fix : Implemented cheating detection patch for new sigils. #47

Workflow file for this run

name: Lint and Format
on: [push, pull_request]
jobs:
typescript:
name: Typescript
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- name: Typescript
run: npm run tsc
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: npm ci
- name: ESLint
run: npm run lint
# prettier:
# name: Prettier
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# node-version: 20
# - run: npm ci
# - name: Prettier
# run: npm run format-check