-
Notifications
You must be signed in to change notification settings - Fork 15
99 lines (97 loc) · 2.72 KB
/
pr.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
---
name: Run PR checks
on:
pull_request:
push:
branches:
- main
- next
permissions:
contents: read
jobs:
lint:
name: Lint the code base
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: Globally update npm
run: npm install -g npm@latest
- name: Install dependencies
run: npm ci
- name: Install lint dependencies
run: |
npm install -g markdownlint-cli
pip install yamllint
- name: Lint code base
run: |
# Run built-in JavaScript/JSON linting
npx lerna run lint
# Lint markdown files
markdownlint '**/*.md'
# Lint YAML files
yamllint --format github --config-file .yaml-lint.yml .
build_and_test:
name: Build and test (on NodeJS 16)
runs-on: ubuntu-latest
defaults:
run:
# setting the shell to bash will enable fail-fast behavior
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: Globally update npm
run: npm install -g npm@latest
- name: Install dependencies
run: npm ci
- name: Build library
run: npx lerna run build
- name: Run tests
run: npx lerna run test --scope="@easydynamics/oscal-react-library"
- name: Archive artifacts
uses: actions/upload-artifact@v3
with:
name: oscal-viewer
path: packages/oscal-viewer/build
build-storybook:
name: Build Storybook site
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v3
with:
node-version: 18
cache: "npm"
- name: Setup pages
uses: actions/configure-pages@v3
- name: Globally update npm
run: npm install -g npm@latest
- name: Install dependencies
run: npm ci
- name: Build library's dependencies
run: npx lerna exec --include-dependencies --scope '@easydynamics/oscal-react-library' -- npm run build
- name: Build Storybook
run: npm run build-storybook
working-directory: packages/oscal-react-library
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: packages/oscal-react-library/storybook-static
retention-days: "7"