41 lines
969 B
YAML
41 lines
969 B
YAML
version: 19
|
|
jobs:
|
|
- name: next build
|
|
steps:
|
|
- !CheckoutStep
|
|
name: checkout
|
|
cloneCredential: !DefaultCredential {}
|
|
withLfs: false
|
|
withSubmodules: false
|
|
condition: ALL_PREVIOUS_STEPS_WERE_SUCCESSFUL
|
|
- !SetBuildVersionStep
|
|
name: set build version
|
|
buildVersion: '@script:builtin:node:determine-project-version@'
|
|
condition: ALL_PREVIOUS_STEPS_WERE_SUCCESSFUL
|
|
- !CommandStep
|
|
name: build & test
|
|
runInContainer: true
|
|
image: node:lts-hydrogen
|
|
interpreter: !DefaultInterpreter
|
|
commands:
|
|
- npm install
|
|
- export CI=TRUE
|
|
- npx next build
|
|
- npx next lint
|
|
useTTY: false
|
|
condition: ALL_PREVIOUS_STEPS_WERE_SUCCESSFUL
|
|
triggers:
|
|
- !BranchUpdateTrigger {}
|
|
retryCondition: never
|
|
maxRetries: 3
|
|
retryDelay: 30
|
|
caches:
|
|
- key: npm-cache
|
|
path: /root/.npm
|
|
timeout: 3600
|
|
services:
|
|
- name: run
|
|
image: node:lts-hydrogen
|
|
arguments: npm start
|
|
readinessCheckCommand: npm run build
|