Skip to content

Formatting

Formatting #192

Workflow file for this run

name: Run tests
on: push
jobs:
test-unit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm install
- name: Run Unit tests
run: npm run test:unit
test-pdf:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install modules
run: npm install
- name: Run PDF tests
run: npm run test:pdf