Skip to content

Update HTML searcher for latest markup, and misc. fixes (#70) #32

Update HTML searcher for latest markup, and misc. fixes (#70)

Update HTML searcher for latest markup, and misc. fixes (#70) #32

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches: [ master ]
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Build and run tests
run: |
npm install
npm run build
npm test