Skip to content

feat: bump next runtime to 5.7.1 (#1365) #2970

feat: bump next runtime to 5.7.1 (#1365)

feat: bump next runtime to 5.7.1 (#1365) #2970

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@v4
- name: Using Node.js
uses: actions/setup-node@v4
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