Skip to content

feat(api): bulk-create endpoints for 7 indirect-scoped entities (P3-H… #90

feat(api): bulk-create endpoints for 7 indirect-scoped entities (P3-H…

feat(api): bulk-create endpoints for 7 indirect-scoped entities (P3-H… #90

Workflow file for this run

name: tests
on:
push:
branches: [master, main]
pull_request:
branches: [master, main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: ['20.x', '22.x']
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'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Run vitest
run: npm test