mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
17 lines
379 B
YAML
17 lines
379 B
YAML
name: on-push
|
|
on: push
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Build the stack
|
|
run: docker-compose up -d
|
|
- name: Test
|
|
env:
|
|
GN_INSTANCE_FOLDER: /tmp/gradio-node-instance
|
|
GN_CONTAINER_NAME: gradido-node-build
|
|
run: docker run gradido-node-test
|
|
timeout-minutes: 2
|
|
|