forked from expo/expo
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (51 loc) · 1.92 KB
/
Copy pathbare-diffs.yml
File metadata and controls
54 lines (51 loc) · 1.92 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
name: Check Template Bare Minimum Diffs
on:
workflow_dispatch: {}
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }}
cancel-in-progress: true
jobs:
bare-diffs:
runs-on: ubuntu-24.04
steps:
- name: 👀 Checkout
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: 🔨 Install pnpm
uses: pnpm/action-setup@0e279bb959325dab635dd2c09392533439d90093 # v6.0.8
with:
version: 10
- name: ⬢ Setup Node
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 24
cache: 'pnpm'
- name: 📦 Install dependencies
run: pnpm install --ignore-scripts --frozen-lockfile
- name: ♻️ Restore caches
uses: ./.github/actions/expo-caches
id: expo-caches
with:
pnpm-docs: 'true'
- name: ➕ Add `bin` to GITHUB_PATH
run: echo "$(pwd)/bin" >> $GITHUB_PATH
- name: 🛠 Build expotools
run: pnpm turbo build --filter expotools...
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: expo
- name: 🧐 Check diffs
run: |
echo "Checking that expo-template-bare-minimum diffs are updated"
pnpm expotools generate-bare-diffs --check
- name: 🔔 Notify on Slack
uses: ./.github/actions/slack-notify
if: failure() && github.event.ref == 'refs/heads/main' && github.repository == 'expo/expo'
with:
webhook: ${{ secrets.slack_webhook_docs }}
author_name: Check for Changes in Bare Diffs
- name: 💾 Store artifacts of diff failures
if: failure()
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: template-bare-minimum-bare-diff-failure
path: docs/public/static/diffs/template-bare-minimum/raw