Fix Percy/Puppeteer sandbox error in GitHub Actions #64
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ⚛ Workflow Launcher | |
| on: | |
| # Deploy each push to the main branch | |
| push: | |
| branches: [ main ] | |
| # Allows you to run this workflow manually from the Actions tab | |
| workflow_dispatch: | |
| inputs: | |
| force-all-changed: | |
| type: boolean | |
| default: false | |
| jobs: | |
| # Find which packages have changed | |
| check-if-packages-changed: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| backend: ${{ steps.check-changed.outputs.backend }} | |
| backend-docker-manager: ${{ steps.check-changed.outputs.backend-docker-manager }} | |
| web: ${{ steps.check-changed.outputs.web }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 24 | |
| - name: Install local version of nx | |
| run: npm ci --ignore-scripts | |
| - name: Find which packages have changed | |
| id: check-changed | |
| if: '!inputs.force-all-changed' | |
| run: > | |
| node .github/scripts/checkIfPackagesChanged.js | |
| ${{ github.token }} | |
| launcher.yml | |
| backend:@commutelive/backend | |
| backend-docker-manager:@commutelive/backend-docker-manager | |
| web:@commutelive/web | |
| # backend | |
| backend: | |
| needs: check-if-packages-changed | |
| if: inputs.force-all-changed || needs.check-if-packages-changed.outputs.backend | |
| uses: ./.github/workflows/publish-backend.yml | |
| secrets: inherit | |
| # backend-docker-manager | |
| backend-docker-manager: | |
| needs: check-if-packages-changed | |
| if: inputs.force-all-changed || needs.check-if-packages-changed.outputs.backend-docker-manager | |
| uses: ./.github/workflows/publish-backend-docker-manager.yml | |
| secrets: inherit | |
| # web | |
| web: | |
| needs: check-if-packages-changed | |
| if: inputs.force-all-changed || needs.check-if-packages-changed.outputs.web | |
| uses: ./.github/workflows/deploy-web.yml | |
| secrets: inherit |