Skip to content

Parse interval comments #70

Parse interval comments

Parse interval comments #70

Workflow file for this run

name: Test
on: [push]
jobs:
build:
if: "! contains(toJSON(github.event.commits.*.message), '[skip-ci]')"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
steps:
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install libxml2-utils
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
env:
CI: true