Skip to content

ref: readme

ref: readme #31

Workflow file for this run

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