Skip to content

feature/ads-776 Automated secondary nav items #578

feature/ads-776 Automated secondary nav items

feature/ads-776 Automated secondary nav items #578

Workflow file for this run

name: Test Anatomy
# Controls when the action will run.
on:
# Triggers the workflow on pull request events on main and develop
pull_request:
branches: [main, develop]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test:
# The type of runner that the job will run on
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [19.x, 20.x, 21.x]
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm ci, test
run: |
npm ci
npm test