Skip to content

feat: Add prettier and misc files #9

feat: Add prettier and misc files

feat: Add prettier and misc files #9

Workflow file for this run

name: Build npm package
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
npm-build:
runs-on: ubuntu-latest
permissions:
contents: read
strategy:
matrix:
node-version: [24.x]
steps:
- name: Checkout code
uses: actions/checkout@v5
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linting
run: npm run lint
- name: Run tests
run: npm test