Skip to content

feat: batch improvements — new targets, watch, import, hook, templates, LICENSE #3

feat: batch improvements — new targets, watch, import, hook, templates, LICENSE

feat: batch improvements — new targets, watch, import, hook, templates, LICENSE #3

Workflow file for this run

name: tests
on:
workflow_call:
pull_request:
branches: ["main"]
paths-ignore:
- '.devcontainer/**'
- '.github/workflows/**'
jobs:
test:
strategy:
matrix:
node-version: ['20.x', '22.x', '24.x']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
# cache: "npm" # needs lockfile if enabled
- run: npm install
- run: npm run lint
- run: npm test