-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (39 loc) · 1.14 KB
/
CI.yaml
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
name: CI
on:
pull_request:
branches: master
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch all history for all branches and tags
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: ESLint
run: pnpm run lint --max-warnings 0
- name: Typecheck
run: pnpm run typecheck
- name: Check changed-elements-react unit test coverage
run: pnpm run cover:components
- name: Run Audit
run: pnpm audit
- name: Check if changeset is present
run: |
# There are issues with changesets in github workflows, so we need to force pull the master branch
# Fix for issue https://github.com/changesets/changesets/issues/517#issuecomment-884778604
git pull -f origin master:master
pnpm changeset status --since=master