feat(ci,ios) check if Pod file is in sync when running CI

pull/14267/head jitsi-meet_9217
Saúl Ibarra Corretgé 1 year ago committed by Saúl Ibarra Corretgé
parent 51c3658205
commit 92492dc482
  1. 7
      .github/workflows/ci.yml

@ -73,6 +73,13 @@ jobs:
node-version: 16
cache: 'npm'
- run: npm install
- name: Install Pods
run: |
pod --version
cd ios
pod install --repo-update
- name: Check if the git repository is clean
run: $(exit $(git status --porcelain --untracked-files=no | head -255 | wc -l)) || (echo "Dirty git tree"; git diff; exit 1)
- run: npx react-native bundle --entry-file react/index.native.js --platform ios --bundle-output /tmp/ios.bundle --reset-cache
debian-build:
name: Test Debian packages build

Loading…
Cancel
Save