Skip to content

ci: fix build

ci: fix build #9

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Lint & Format
run: |
npm run format
# npm run lint
- name: Test
run: npm run test