Skip to content

Bump linkify-it from 5.0.1 to 5.0.2 #112

Bump linkify-it from 5.0.1 to 5.0.2

Bump linkify-it from 5.0.1 to 5.0.2 #112

Workflow file for this run

name: CI
on:
push:
branches: ['main']
pull_request:
paths:
- 'src/**'
- 'test/**'
- '*.json'
- '*.js'
- '*.ts'
- 'lib/**'
- 'scripts/**'
- '.github/workflows/ci.yml'
- 'package.json'
workflow_dispatch:
permissions:
contents: read
jobs:
build:
strategy:
matrix:
node-version: [20.x, 22.x, 24.x, 25.x]
platform:
- os: ubuntu-latest
shell: bash
- os: macos-latest
shell: bash
- os: windows-latest
shell: bash
- os: windows-latest
shell: powershell
fail-fast: false
runs-on: ${{ matrix.platform.os }}
defaults:
run:
shell: ${{ matrix.platform.shell }}
steps:
- name: Checkout Repository
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Use Nodejs ${{ matrix.node-version }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run Tests
run: npm test -- -c -t0