Skip to content

Viewing relationships in About tab of dedicated page; update packages… #27

Viewing relationships in About tab of dedicated page; update packages…

Viewing relationships in About tab of dedicated page; update packages… #27

Workflow file for this run

name: Test
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
jobs:
lint-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.x, 22.x ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run tests
run: npm test