Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
682d3c7
actualizo target de js generado
cesarlinux Oct 16, 2025
9792610
devuelvo como extension el estado del paciente
cesarlinux Oct 16, 2025
011c57e
devuelvo como extension el estado del paciente
cesarlinux Oct 16, 2025
0be9668
Merge branch 'IO-50' of https://github.com/andes/fhir into IO-50
cesarlinux Oct 16, 2025
3463d96
Merge branch 'IO-50' of https://github.com/andes/fhir into IO-50
cesarlinux Oct 16, 2025
1febc1a
Merge branch 'IO-50' of https://github.com/andes/fhir into IO-50
cesarlinux Oct 16, 2025
fb0f727
Merge branch 'IO-50' of https://github.com/andes/fhir into IO-50
cesarlinux Oct 16, 2025
d11464c
Merge branch 'IO-50' of https://github.com/andes/fhir into IO-50
cesarlinux Oct 16, 2025
da9d53a
Merge branch 'IO-50' of https://github.com/andes/fhir into IO-50
cesarlinux Oct 16, 2025
a699187
Merge branch 'IO-50' of https://github.com/andes/fhir into IO-50
cesarlinux Oct 17, 2025
16c8127
Merge branch 'IO-50' of https://github.com/andes/fhir into IO-50
cesarlinux Oct 17, 2025
8ce3d8f
Merge branch 'IO-50' of https://github.com/andes/fhir into IO-50
cesarlinux Oct 17, 2025
6cfb9a9
Update Node.js version from 10.x to 22.x
cesarlinux Oct 17, 2025
d57ba4d
Merge branch 'IO-50' of https://github.com/andes/fhir into IO-50
cesarlinux Oct 17, 2025
488f194
Merge branch 'IO-50' of https://github.com/andes/fhir into IO-50
cesarlinux Oct 17, 2025
7df528d
Merge branch 'IO-50' of https://github.com/andes/fhir into IO-50
cesarlinux Oct 17, 2025
740b5f5
Merge branch 'IO-50' of https://github.com/andes/fhir into IO-50
cesarlinux Oct 20, 2025
13201f1
Merge branch 'IO-50' of https://github.com/andes/fhir into IO-50
cesarlinux Oct 20, 2025
3a3d760
Merge branch 'IO-50' of https://github.com/andes/fhir into IO-50
cesarlinux Oct 21, 2025
9fdf20b
IO - POST Patient: Guardar organización
JuanIRamirez Oct 17, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@ jobs:
install:
working_directory: ~/fhir
docker:
- image: 'circleci/node:14'
- image: 'cimg/node:22.11'
steps:
- run:
name: Use HTTPS for GitHub
command: git config --global url."https://github.com/".insteadOf "git@github.com:"
- checkout
- restore_cache:
keys:
Expand All @@ -27,7 +30,7 @@ jobs:
build:
working_directory: ~/fhir
docker:
- image: circleci/node:14
- image: cimg/node:22.11
steps:
- attach_workspace:
at: ~/
Expand All @@ -40,7 +43,7 @@ jobs:
deploy:
working_directory: ~/fhir
docker:
- image: 'circleci/node:14'
- image: 'cimg/node:22.11'
steps:
- attach_workspace:
at: ~/
Expand All @@ -62,8 +65,8 @@ workflows:
branches:
only: master
- deploy:
requires:
requires:
- request-deploy
filters:
filters:
branches:
only: master
6 changes: 3 additions & 3 deletions .github/workflows/build_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ name: BUILD AND TEST
on: [push]
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '10.x'
node-version: '22.x'
- run: npm ci
- run: npm run lint
- run: npm test
- run: npm test
Loading