Remove custom workers from nextjs demo #4095
Workflow file for this run
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
| # Ensures packages build correctly | |
| name: Build Packages | |
| on: | |
| push: | |
| jobs: | |
| build: | |
| timeout-minutes: 10 | |
| name: Build Packages | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Build | |
| run: pnpm build:packages | |
| - name: Build (prod) | |
| run: pnpm build:packages:prod | |
| - name: Build typescript | |
| run: pnpm exec tsc -b | |
| - name: Verify @powersync/common API | |
| working-directory: packages/common | |
| run: pnpm exec api-extractor run --verbose |