Skip to content

add test workflow

add test workflow #1

Workflow file for this run

name: test and lint
on:
push:
pull_request:
jobs:
test-and-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
registry-url: 'https://registry.npmjs.org/'
- name: Install dependencies
run: npm install
- name: Build the package
run: npm run build
- name: Lint the code
run: npm run lint
- name: Test the code
run: npm test
- name: Done
run: echo "Tests and linting passed successfully."