Skip to content

Commit

Permalink
Create fsh-validation.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rockphotog authored Jan 22, 2025
1 parent ef4d0bb commit 5c78129
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/fsh-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Validate FHIR Shorthand Files

on:
workflow_dispatch:

jobs:
validate-fsh:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'

- name: Install SUSHI CLI
run: npm install -g fsh-sushi

- name: Validate FHIR Shorthand files
run: sushi . --validate

0 comments on commit 5c78129

Please sign in to comment.