Skip to content

feat: add Next.js runtime 4.39.1 behind a feature flag (#1227) #2641

feat: add Next.js runtime 4.39.1 behind a feature flag (#1227)

feat: add Next.js runtime 4.39.1 behind a feature flag (#1227) #2641

Workflow file for this run

name: Build
on:
# Ensure GitHub actions are not run twice for same commits
push:
branches: [main]
tags: ['*']
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Git checkout
uses: actions/checkout@v3
- name: Using Node.js
uses: actions/setup-node@v3
with:
node-version: '*'
cache: 'npm'
check-latest: true
- name: Install dependencies
run: npm ci
- name: Linting
run: npm run format:ci
- name: Tests
run: npm run test:ci