forked from medusajs/medusa
-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (35 loc) · 879 Bytes
/
oas-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: OAS Comments Format Validation
on:
pull_request:
paths:
- www/utils/generated/oas-output/**
jobs:
docs-test:
runs-on: ubuntu-latest
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: "16.10.0"
cache: "yarn"
- name: Install dependencies
uses: ./.github/actions/cache-deps
with:
extension: oas
- name: Build Packages
run: yarn build
- name: Build OAS
run: |
yarn openapi:generate --dry-run
#