File tree Expand file tree Collapse file tree 1 file changed +27
-2
lines changed
Expand file tree Collapse file tree 1 file changed +27
-2
lines changed Original file line number Diff line number Diff line change 1818 steps :
1919 - name : Checkout code
2020 uses : actions/checkout@v3
21- - name : Get FHIR packages
22- uses : cybernop/fill-fhir-cache@v1
21+ - name : Setup NodeJS
22+ uses : actions/setup-node@v3
23+ with :
24+ node-version : 18
25+ - uses : actions/setup-dotnet@v3
26+ with :
27+ dotnet-version : " 8.0"
28+ - name : Create temp dir and copy sushi project file
29+ run : mkdir temp && cp -v ${{ inputs.project-dir }}/sushi-config.yaml temp/
30+ shell : bash
31+ - name : Install sushi locally
32+ working-directory : temp
33+ run : npm install -g fsh-sushi
34+ shell : bash
35+ - name : Install Firely Terminal
36+ run : dotnet tool install -g firely.terminal
37+ shell : bash
38+ - name : Get dependencies
39+ working-directory : temp
40+ run : sushi
41+ shell : bash
42+ - name : Inflate FHIR packages
43+ run : fhir inflate-cache
44+ shell : bash
45+ - name : Remove temporary files
46+ run : npm remove -g fsh-sushi && rm -rf temp
47+ shell : bash
2348 - name : Build profiles
2449 uses : cybernop/build-fhir-ig@v1
2550 with :
You can’t perform that action at this time.
0 commit comments