Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update test environment and workflows #67

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
66 changes: 0 additions & 66 deletions .circleci/config.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: tests

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["16.x", "18.x"]

steps:
- uses: actions/checkout@v2
- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm install
- name: Build package
run: npm run build
- name: Lint
run: npm run lint
- name: Test
run: npm run test
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

13 changes: 6 additions & 7 deletions dcm4chee-docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
version: "3"
volumes:
db_data: {}
arc_data: {}
services:
ldap:
image: dcm4che/slapd-dcm4chee:2.4.44-13.3
Expand All @@ -9,9 +12,6 @@ services:
expose:
- "389"
env_file: dcm4chee-docker-compose.env
volumes:
- ./tmp/dcm4chee-arc/ldap:/var/lib/ldap
- ./tmp/dcm4chee-arc/slapd.d:/etc/ldap/slapd.d
db:
image: dcm4che/postgres-dcm4chee:10.0-13
logging:
Expand All @@ -22,15 +22,15 @@ services:
- "5432"
env_file: dcm4chee-docker-compose.env
volumes:
- ./tmp/dcm4chee-arc/db:/var/lib/postgresql/data
- db_data:/var/lib/postgresql/data
arc:
image: dcm4che/dcm4chee-arc-psql:5.13.3
logging:
driver: json-file
options:
max-size: "10m"
ports:
- "8008:8080"
- "9999:8080"
env_file: dcm4chee-docker-compose.env
environment:
WILDFLY_CHOWN: /opt/wildfly/standalone /storage
Expand All @@ -39,5 +39,4 @@ services:
- ldap
- db
volumes:
- ./tmp/dcm4chee-arc/wildfly:/opt/wildfly/standalone
- ./tmp/dcm4chee-arc/storage:/storage
- arc_data:/storage
Loading