Skip to content

chore: standardize .gitignore and .npmignore #42

chore: standardize .gitignore and .npmignore

chore: standardize .gitignore and .npmignore #42

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: Node ${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test
run: npm test