-
Notifications
You must be signed in to change notification settings - Fork 0
73 lines (61 loc) · 2.02 KB
/
pr.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
name: "Pull Request"
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
filter:
permissions:
contents: read
runs-on: ubuntu-24.04
outputs:
deploy: ${{ steps.changes.outputs.deploy }}
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
# https://github.com/marketplace/actions/paths-changes-filter
- name: Paths Changes Filter
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
id: changes
with:
filters: |
deploy:
- 'apps/**/*'
- 'packages/**/*'
- 'package.json'
deploy:
permissions:
contents: read
deployments: write
pull-requests: write
runs-on: ubuntu-24.04
needs: filter
if: needs.filter.outputs.deploy == 'true'
steps:
# https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
# https://github.com/marketplace/actions/mise-action
- name: mise action
uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11
- name: Install deps
run: bun install
# https://github.com/marketplace/actions/vercel-action
- name: Deploy to Vercel
uses: amondnet/vercel-action@16e87c0a08142b0d0d33b76aeaf20823c381b9b9 # v25.2.0
id: vercel
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
github-comment: true
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID}}
vercel-version: "32.6.0"
- name: Lighthouse
uses: foo-software/lighthouse-check-action@v12.0.1
with:
gitHubAccessToken: ${{ secrets.GITHUB_TOKEN }}
urls: ${{ steps.vercel.outputs.preview-url }}