Skip to content

Merge pull request #1098 from ftaffelt/fix-#1097 #336

Merge pull request #1098 from ftaffelt/fix-#1097

Merge pull request #1098 from ftaffelt/fix-#1097 #336

Workflow file for this run

name: ng2-pdf-viewer workflow
on:
push:
branches:
- master
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
id: npm-cache
with:
path: node_modules
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: ${{ runner.os }}-npm
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
if: steps.npm-cache.outputs.cache-hit != 'true'
run: npm ci
- name: Run tests
env:
CI: true
run: npm run test:ci