Validating v4

This commit is contained in:
Kasra Bigdeli
2020-08-16 08:58:13 -04:00
parent b643e1709a
commit 7bab4b4afc
4 changed files with 140 additions and 106 deletions

21
.github/workflows/validate_apps.yml vendored Normal file
View File

@ -0,0 +1,21 @@
name: Validate One Click Apps
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14
- run: npm ci && npm run validate_apps && npm run formatter
env:
GITHUB_PERSONAL_TOKEN: ${{secrets.GITHUB_PERSONAL_TOKEN}}