Skip to content

add the same improvements mades for the issue #3 for --html #23

add the same improvements mades for the issue #3 for --html

add the same improvements mades for the issue #3 for --html #23

Workflow file for this run

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: BuildTest
on:
workflow_dispatch:
push:
branches:
- main
jobs:
test:
strategy:
matrix:
node: [14.x, 16.x]
os: [ubuntu-latest, windows-latest]
runs-on: ${{matrix.os}}
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{matrix.node}}
- run: npm ci
- run: npm run build
- run: npm test