forked from rjsf-team/react-jsonschema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
110 lines (101 loc) · 3.06 KB
/
ci.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.4.0
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm run cs-check
- name: Build with Netlify badge
if: github.ref != 'refs/heads/master'
run: npm run build
env:
SHOW_NETLIFY_BADGE: true
- name: Build
if: github.ref == 'refs/heads/master'
run: npm run build
- if: matrix.node-version == '14.x'
uses: actions/upload-artifact@v2
with:
name: dist
path: packages/playground/build
- run: npm test
deploy_preview:
runs-on: ubuntu-latest
if: github.ref != 'refs/heads/master'
name: "Deploy preview (https://deploy-preview-${{ github.event.pull_request.number }}--rjsf.netlify.app/)"
needs: [build]
steps:
- name: Download built files
uses: actions/download-artifact@v2
with:
name: dist
path: dist
- name: "Deploy to Netlify (https://deploy-preview-${{ github.event.pull_request.number }}--rjsf.netlify.app/)"
uses: netlify/actions/cli@master
with:
args: deploy --dir=dist --alias="deploy-preview-${PR_NUMBER}"
env:
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
PR_NUMBER: ${{ github.event.pull_request.number }}
deploy_playground:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
name: Deploy playground to GitHub Pages
needs: [build]
steps:
- name: Download built files
uses: actions/download-artifact@v2
with:
name: dist
path: dist
- name: Deploy playground
uses: crazy-max/ghaction-github-pages@v2.5.0
with:
keep_history: true
target-branch: gh-pages
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# deploy_canary:
# runs-on: ubuntu-latest
# if: github.ref == 'refs/heads/master'
# name: Deploy canary version of packages to npm
# needs: [build]
# steps:
# - uses: actions/checkout@v2
# - name: Use Node.js 14.x
# uses: actions/setup-node@v2.4.0
# with:
# node-version: 14.x
# - run: npm ci
# - run: echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} > .npmrc
# env:
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
# - run: npx lerna publish from-package --yes --no-verify-access --canary
# - if: always()
# run: rm .npmrc
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2.2.2
with:
python-version: 3.6
- run: pip install -r requirements.docs.txt
- run: mkdocs build --clean