Skip to content

feat(get): add an option to not expand xincludes #79

feat(get): add an option to not expand xincludes

feat(get): add an option to not expand xincludes #79

Workflow file for this run

name: Test - No REST
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- run: docker pull existdb/existdb:release
- run: |
docker create --rm --name exist \
--publish 8080:8080 --publish 8443:8443 \
--volume ./empty:/exist/autodeploy:ro \
existdb/existdb:release
- uses: actions/checkout@v4
- name: Modify web.xml in docker instance
run: docker cp ./spec/fixtures/web-no-rest.xml exist:exist/etc/webapp/WEB-INF/web.xml
- run: docker start exist
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
cache: 'npm'
- run: npm ci --omit=optional
- run: npm link
- name: Wait for container to be healthy
run: timeout 60s sh -c 'until docker ps | grep exist | grep -q healthy; do echo "Not ready yet."; sleep 2; done; echo "$(docker ps | grep exist)"'
- name: Run "norest" testsuite
run: npm run test:norest