-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (46 loc) · 1.53 KB
/
bare-diffs.yml
File metadata and controls
49 lines (46 loc) · 1.53 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
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@v4
- name: 🔨 Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: ⬢ Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
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: 🧐 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'
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@v4
with:
name: template-bare-minimum-bare-diff-failure
path: docs/public/static/diffs/template-bare-minimum/raw