finish Web Studio 1.0 safeguards #31
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: Release Readiness | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main, "codex/**"] | |
| concurrency: | |
| group: release-readiness-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| editor-and-catalog: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| cache-dependency-path: Editor/editorfe/package-lock.json | |
| - run: npm ci | |
| working-directory: Editor/editorfe | |
| - run: SCRIPTWIDGET_SKIP_XCODE=1 ./Scripts/release-readiness.sh | |
| apple-platforms: | |
| runs-on: macos-26 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| cache-dependency-path: Editor/editorfe/package-lock.json | |
| - run: npm ci | |
| working-directory: Editor/editorfe | |
| - name: Report Apple toolchain | |
| run: | | |
| xcodebuild -version | |
| xcrun simctl list runtimes | |
| - run: ./Scripts/release-readiness.sh | |
| - run: ./Scripts/ipad-icloud-tests.sh |