chore(deps): bump next from 16.1.6 to 16.1.7 in /examples/nextjs #60
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: Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| timeout-minutes: 60 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| name: Install pnpm | |
| with: | |
| run_install: false | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/* | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Build libs | |
| run: pnpm run build | |
| - name: Get playwright version | |
| run: echo "PLAYWRIGHT_VERSION=$(pnpm --filter @supabase/pg-parser exec playwright --version | tail -1 | awk '{print $NF}')" >> $GITHUB_ENV | |
| - name: Setup playwright | |
| uses: ./.github/actions/setup-playwright | |
| with: | |
| version: ${{ env.PLAYWRIGHT_VERSION }} | |
| - name: Tests | |
| run: pnpm run test | |
| examples: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| name: Install pnpm | |
| with: | |
| run_install: false | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: lts/* | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Build libs | |
| run: pnpm run build | |
| - name: Next.js | |
| run: pnpm --filter nextjs build |