Skip to content

Update package.json

Update package.json #2

Workflow file for this run

name: Testing / CI
on:
push:
branches:
- '**'
paths:
- 'src/**'
- 'package.json'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 21
- run: npm ci
- run: npm run lint && npm run build