mirror of
https://github.com/KevinMidboe/planetposen-frontend.git
synced 2026-01-04 16:15:28 +00:00
49 lines
584 B
YAML
49 lines
584 B
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: Lint and build project
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: Build project
|
|
image: node:18
|
|
commands:
|
|
- yarn
|
|
- yarn build
|
|
|
|
- name: Lint project
|
|
image: node:18
|
|
commands:
|
|
- yarn
|
|
- yarn lint
|
|
|
|
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: Compile docker image
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: Build
|
|
image: node:18
|
|
commands:
|
|
- yarn
|
|
- yarn build
|
|
|
|
depends_on:
|
|
- Lint and build project
|
|
|
|
trigger:
|
|
branch:
|
|
- main
|
|
event:
|
|
exclude:
|
|
- pull_request
|
|
|