Push (compose tests) #103
This file contains 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: Push (compose tests) | |
on: | |
push: {} | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: {} | |
jobs: | |
compose-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: npm install | |
run: npm install | |
- name: compose build of conlink | |
run: docker compose -f examples/test1-compose.yaml build | |
- name: "dctest test/test*.yaml" | |
timeout-minutes: 5 | |
run: time node_modules/.bin/dctest --verbose-commands conlink-test $(ls -v test/test*.yaml) |