Skip to content

added confing plugins to make it easier to the users #7

added confing plugins to make it easier to the users

added confing plugins to make it easier to the users #7

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Run lint
run: npm run lint
- name: Run typecheck
run: npm run typecheck
- name: Run tests
run: npm test