-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a2f3283
commit a193148
Showing
1 changed file
with
15 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,8 +14,21 @@ jobs: | |
runs-on: ubuntu-latest | ||
container: hl7fhir/ig-publisher-base:latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install hl7.fhir.no.basis-2.2.0-snapshots in local cache and run IG Publisher | ||
- uses: actions/checkout@v4 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '16' | ||
|
||
- name: Cache Node.js modules | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.npm | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-node- | ||
- name: Install FHIR packages and run IG Publisher | ||
run: | | ||
echo "NPM install fhir r4 core 4.0.1 from package registry" | ||
npm --registry https://packages.simplifier.net install [email protected] | ||
|