fix: updated formatUnorderedList to support empty itemPrefix #90
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Run tests | |
strategy: | |
matrix: | |
node-version: [14.x, 16.x] | |
os: [ubuntu-latest, windows-latest] | |
include: | |
- os: windows-latest | |
get-cache-path: '"dir=$(npm config get cache)" >> $env:GITHUB_OUTPUT' | |
- os: ubuntu-latest | |
get-cache-path: 'echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT' | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Setup NPM v7 | |
run: npm i -g npm@7 | |
- name: Get npm cache directory | |
id: npm-cache-dir | |
run: ${{ matrix.get-cache-path }} | |
- uses: actions/cache@v3 | |
id: npm-cache | |
with: | |
path: ${{ steps.npm-cache-dir.outputs.dir }} | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- name: Touch cli file to prevent npm ci from freaking out | |
uses: DamianReeves/[email protected] | |
with: | |
path: packages/html-to-text-cli/bin/cli.js | |
contents: '// placeholder' | |
- run: npm ci | |
- run: npm test |