-
-
Notifications
You must be signed in to change notification settings - Fork 590
62 lines (47 loc) · 1.22 KB
/
validate.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
name: Validate Monorepo
on:
pull_request:
types:
- edited
- opened
- synchronize
push:
branches:
- '*'
- '!master'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['18', '16', '14']
name: Node v${{ matrix.node }}
steps:
- name: Checkout Commit
uses: actions/checkout@v1
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Checkout Master
run: git branch -f master origin/master
- name: Install pnpm
run: npm install pnpm@7 -g
- name: Sanity Check
run: |
echo branch `git branch --show-current`;
echo node `node --version`;
echo yarn `pnpm --version`
- name: pnpm install
run: pnpm install
- name: Prettier
run: pnpm run prettier:check
# pnpm audit isn't as robust as it needs to be atm
# - name: Audit Dependencies
# run: pnpm security
- name: Build Packages
run: pnpm --recursive build
- name: Lint Monorepo
run: pnpm lint:js
- name: Run Tests
run: pnpm --filter "...[origin/master]" ci:coverage