Skip to content

chore(deps): bump next from 14.1.1 to 14.2.10 in /test-runtimes/nextjs #880

chore(deps): bump next from 14.1.1 to 14.2.10 in /test-runtimes/nextjs

chore(deps): bump next from 14.1.1 to 14.2.10 in /test-runtimes/nextjs #880

Workflow file for this run

name: Test
on:
push:
branches: ["main"]
pull_request:
jobs:
unit-test:
name: Run Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
version: [18, 20, 22]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.version }}
- run: npm ci
- run: npm test
integration-test:
name: Run Integration Tests
runs-on: ubuntu-latest
strategy:
matrix:
version: [18, 20, 22]
environment: integration_tests
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.version }}
- run: npm ci
- run: npm test
env:
RUN_INTEGRATION_TESTS: 1
PROJECT_ID: ${{ secrets.PROJECT_ID }}
SECRET: ${{ secrets.SECRET }}
- run: npm run test-packages
env:
PROJECT_ID: ${{ secrets.PROJECT_ID }}
SECRET: ${{ secrets.SECRET }}
build:
name: Check Packaged Files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: "18"
- run: npm ci
- run: npm run build
- run: git diff --exit-code