feat(get): add an option to not expand xincludes #79
This file contains hidden or 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
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 |