10076: DOD #543
Workflow file for this run
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: Verify PDFS | |
on: | |
pull_request: | |
jobs: | |
test_pdfs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.15.0' | |
- name: Collect Workflow Telemetry | |
uses: runforesight/workflow-telemetry-action@v1 | |
with: | |
comment_on_pr: false | |
- name: Setup | |
run: | | |
sudo apt-get update | |
sudo apt-get install -o Acquire::Retries=3 -y graphicsmagick ghostscript | |
- name: Install Node Dependencies | |
run: npm ci && npm rebuild | |
- name: Generate and Test PDFs | |
run: npm run test:document-generation |