Skip to content

fix: fixed typo of data models #15

fix: fixed typo of data models

fix: fixed typo of data models #15

Workflow file for this run

name: Test and Lint
on: push
jobs:
test-and-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "lts/*"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test
- name: Run linter
run: npm run biome-check