-
Notifications
You must be signed in to change notification settings - Fork 716
75 lines (62 loc) · 2.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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: '16.14.0'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v1
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: 📡 Install dependencies
run: yarn install --frozen-lockfile --ignore-engines
- 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 jest
run: yarn jest -w 4
env:
CI: true
COVERAGE: true
- name: 📈 Report code coverage
uses: coverallsapp/github-action@v1.1.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: ❤️ Run lint
run: yarn lint
- name: ✨ Build visx site without failure
run: yarn build
working-directory: './packages/visx-demo/'
- name: 🦛 Run happo
run: yarn run happo-ci-github-actions
working-directory: './packages/visx-demo/'
env:
HAPPO_API_KEY: ${{ secrets.HAPPO_API_KEY }}
HAPPO_API_SECRET: ${{ secrets.HAPPO_API_SECRET }}
HAPPO_COMMAND: '../../node_modules/happo.io/build/cli.js'
# @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