10554 One-time script for cleaning up attachments on corrupted messages #11228
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@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20.14.0' | |
- name: Collect Workflow Telemetry | |
uses: runforesight/workflow-telemetry-action@v2 | |
with: | |
comment_on_pr: false | |
- name: Setup | |
run: | | |
docker build --platform=linux/amd64 -t efcms -f Dockerfile . | |
docker build --platform=linux/amd64 -t efcms-local -f Dockerfile-local . | |
docker run --platform=linux/amd64 -i --rm -v `pwd`/shared/test-output:/home/app/shared/test-output efcms-local sh -c "npm run test:document-generation" |