Skip to content

chore: update version to 4.0.0 #15

chore: update version to 4.0.0

chore: update version to 4.0.0 #15

Workflow file for this run

name: Validate
on: [push]
env:
CI: true
jobs:
check:
name: Run Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: ESLint
run: npm run eslint
- name: Check Formatting
run: npm run prettier:ci
- name: Check Types
run: npm run typecheck