-
Notifications
You must be signed in to change notification settings - Fork 766
64 lines (51 loc) · 1.7 KB
/
pull_request.yml
File metadata and controls
64 lines (51 loc) · 1.7 KB
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
name: Pull request
on:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2 # checkout visx + this commit
- uses: actions/setup-node@v2
with:
node-version: '22.21.1'
- name: Enable Corepack
run: corepack enable
- uses: actions/cache@v4.3.0
id: yarn-cache
with:
path: .yarn/cache
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install --immutable
- name: Ensure TS references are up to date
run: yarn type:update-refs && git diff --exit-code
- name: Ensure we have no ESM-only dependencies
run: yarn vendor-check
- name: Build packages
run: yarn build
- name: Run tests
run: yarn test
env:
CI: true
- name: Generate docs
run: yarn docs:generate
- name: Run lint
run: yarn lint
- name: Build visx site without failure
run: yarn build
working-directory: './packages/visx-demo/'
# @TODO
# this fails on forks, we need to update workflow event type to `pull_request_target`
# but this needs security review
# https://docs.github.com/en/actions/reference/events-that-trigger-workflows#pull_request_target
- name: Report package sizes
run: yarn build:sizes && yarn check:sizes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ github.event.pull_request.number }}
GITHUB_REPOSITORY: $GITHUB_REPOSITORY
GITHUB_ACTOR: $GITHUB_ACTOR