-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (48 loc) · 1.38 KB
/
pull_request.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
# A set of checks to run on each PR: changelogs, build, all kind of tests
name: PR checks
on:
pull_request:
branches:
- main
- dev
jobs:
changes:
runs-on: ubuntu-latest
name: Check presence of changelog documentation
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Verify Change Logs
run: node common/scripts/install-run-rush.js change --verify
builds:
runs-on: ubuntu-latest
name: Check build
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Rush Install
run: node common/scripts/install-run-rush.js install
- name: Rush Rebuild
run: node common/scripts/install-run-rush.js rebuild
- name: Storybook build
run: node common/scripts/install-run-rush.js build-storybook --from @ducky/plumage
tests:
runs-on: ubuntu-latest
name: Tests
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Rush Install
run: node common/scripts/install-run-rush.js install
- name: Rush Rebuild
run: node common/scripts/install-run-rush.js rebuild
- name: Tests
run: node common/scripts/install-run-rush.js test