-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
30 lines (26 loc) · 908 Bytes
/
check-ruby-pods-versions.yml
File metadata and controls
30 lines (26 loc) · 908 Bytes
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
name: Check Ruby and CocoaPods versions
on:
pull_request:
types: [opened, synchronize]
paths:
- 'apps/**/Gemfile.lock'
- 'apps/**/**/Podfile.lock'
jobs:
ruby-pods-version-check:
if: github.repository == 'software-mansion/react-native-reanimated'
runs-on: ubuntu-latest
strategy:
matrix:
working-directory: [fabric-example, macos-example, tvos-example]
concurrency:
group: ruby-pods-version-check-${{ matrix.working-directory }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Clear annotations
run: .github/workflows/helper/clear-annotations.sh
- name: Verify Ruby and CocoaPods versions in lockfiles
run: .github/workflows/helper/check-ruby-pods.sh "apps/${{ matrix.working-directory }}"