chore(build): remove grunt and add makefile [EE-4824] (#8125)

This commit is contained in:
Chaim Lev-Ari
2023-05-02 10:13:37 +07:00
committed by GitHub
parent 731f3959c7
commit f20d3e72b9
20 changed files with 277 additions and 1407 deletions

View File

@@ -0,0 +1,29 @@
name: Validate OpenAPI specs
on:
pull_request:
branches:
- master
- develop
- 'release/*'
jobs:
openapi-spec:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.18'
- name: Download golang modules
run: cd ./api && go get -t -v -d ./...
- uses: actions/setup-node@v3
with:
node-version: '14'
cache: 'yarn'
- run: yarn --frozen-lockfile
- name: Validate OpenAPI Spec
run: make docs-validate