Migrate/docker compose v2 (#25) #35
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: ci | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check markdown files using `markdownlint` | |
run: | | |
npm install -g markdownlint-cli | |
markdownlint *.md | |
- name: Run docker-compose | |
run: docker compose up -d | |
- name: Check that localhost contains ONLYOFFICE | |
run: | | |
sleep 10 | |
curl localhost | grep ONLYOFFICE |