Skip to content
This repository was archived by the owner on Mar 20, 2026. It is now read-only.

Merge pull request #19 from altmetric/fix-js-yaml-vulnerability #12

Merge pull request #19 from altmetric/fix-js-yaml-vulnerability

Merge pull request #19 from altmetric/fix-js-yaml-vulnerability #12

Workflow file for this run

name: CI for Identifiers
on:
push:
branches:
- '**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [23, 22, 20, 18]
steps:
- name: Checkout code
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 install
- name: Run tests
run: npm test