name: SDK on: workflow_dispatch: inputs: checkAll: description: 'type "check-all" to force checking all packages' required: false default: '' push: branches: [main, 'sdk-*'] paths: - .github/workflows/sdk.yml - tools/** - packages/** - yarn.lock pull_request: paths: - .github/workflows/sdk.yml - tools/** - packages/** - yarn.lock schedule: - cron: 0 14 * * * concurrency: group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} cancel-in-progress: true jobs: check-packages: runs-on: ubuntu-22.04 steps: - name: ๐Ÿ‘€ Checkout uses: actions/checkout@v3 with: fetch-depth: 100 - name: โฌ‡๏ธ Fetch commits from base branch run: git fetch origin ${{ github.event.before || github.base_ref || 'main' }}:${{ github.event.before || github.base_ref || 'main' }} --depth 100 if: github.event_name == 'pull_request' || github.event_name == 'workflow_dispatch' - name: โ™ป๏ธ Restore caches uses: ./.github/actions/expo-caches id: expo-caches with: yarn-workspace: 'true' yarn-tools: 'true' - name: ๐Ÿงถ Install workspace node modules if: steps.expo-caches.outputs.yarn-workspace-hit != 'true' run: yarn install --frozen-lockfile - name: ๐Ÿง Check packages run: | echo "Checking packages according to the event name: ${{ github.event_name }}" if [[ "${{ github.event_name }}" == "schedule" || "${{ github.event.inputs.checkAll }}" == "check-all" ]]; then # Check all packages on scheduled events or if requested by workflow_dispatch event. bin/expotools check-packages --all else # On push event check packages changed since previous remote head. # In pull requests and workflow_dispatch events check all packages changed in the entire PR. bin/expotools check-packages --since ${{ github.event.before || github.base_ref || 'main' }} fi - name: ๐Ÿ”” Notify on Slack uses: 8398a7/action-slack@v3 if: failure() && (github.event.ref == 'refs/heads/main' || startsWith(github.event.ref, 'refs/heads/sdk-')) env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SLACK_WEBHOOK_URL: ${{ secrets.slack_webhook_api }} with: channel: '#expo-sdk' status: ${{ job.status }} fields: job,message,ref,eventName,author,took author_name: Check packages