mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
38 lines
414 B
YAML
38 lines
414 B
YAML
image: node:20-bullseye
|
|
|
|
stages:
|
|
- lint
|
|
- test
|
|
- build
|
|
|
|
cache:
|
|
key: ${CI_COMMIT_REF_SLUG}
|
|
paths:
|
|
- .npm/
|
|
|
|
variables:
|
|
NPM_CONFIG_CACHE: $CI_PROJECT_DIR/.npm
|
|
|
|
before_script:
|
|
- npm ci
|
|
|
|
lint:
|
|
stage: lint
|
|
script:
|
|
- npm run lint
|
|
|
|
typecheck:
|
|
stage: test
|
|
script:
|
|
- npm run typecheck
|
|
|
|
unit_tests:
|
|
stage: test
|
|
script:
|
|
- npm test
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- npm run build
|