Skip to content

build(deps): bump ruby/setup-ruby from 1.275.0 to 1.276.0 in /.github/actions/setup-darwin #680

build(deps): bump ruby/setup-ruby from 1.275.0 to 1.276.0 in /.github/actions/setup-darwin

build(deps): bump ruby/setup-ruby from 1.275.0 to 1.276.0 in /.github/actions/setup-darwin #680

Workflow file for this run

name: Symlinks
on:
pull_request:
types:
- opened
- synchronize
permissions: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
check-symlinks:
name: Check symlinks of iOS/macOS native code
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3
- name: Run check
run: |
scripts/generate-symlinks.sh
if git diff HEAD --quiet --diff-filter=ACDMRT; then
echo $'\nNo changes detected in the iOS/macOS files that require updating the symlinks.'
echo 'All good.'
else
echo $'\nDetected changes in the iOS/macOS files that require updating the symlinks.'
echo "Please run 'scripts/generate-symlinks.sh' from the repository root and commit the changes."
exit 1
fi