Skip to content

Improve configs

Improve configs #100

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20
check-latest: true
cache: 'npm'
- run: |
npm ci
npm run lint
npm run format-check
npm run test
npm run build
env:
CI: true