web-apps/.github/workflows/check.yml

19 lines
512 B
YAML
Raw Normal View History

name: check
on: [push]
jobs:
project-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12
uses: actions/setup-node@v1
with:
node-version: 12
- name: Build using grunt
run: |
2020-10-27 08:32:55 +00:00
npm install --prefix build
cd ..
git clone --branch=develop --depth=1 https://github.com/ONLYOFFICE/sdkjs.git
cd web-apps
2020-10-27 08:32:55 +00:00
grunt --level=ADVANCED --base build --gruntfile build/Gruntfile.js