feat: render to array layer #1030
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: Stackblitz Publish | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{github.workflow}} - ${{github.ref}} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| if: github.repository == 'pixijs/pixijs' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Project | |
| uses: ./.github/actions/setup | |
| - name: Build | |
| run: npm run stackblitz-ci | |
| - name: Publish | |
| run: npx pkg-pr-new@latest publish './' --template '.stackblitz/*' |