werk85/node-html-to-text

View on GitHub
.github/workflows/test.yml

Summary

Maintainability
Test Coverage
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/write-file-action@v1.2
        with:
          path: packages/html-to-text-cli/bin/cli.js
          contents: '// placeholder'

      - run: npm ci

      - run: npm test