16 lines
226 B
YAML
16 lines
226 B
YAML
stages:
|
|
- test
|
|
|
|
test:
|
|
stage: test
|
|
image: node:24
|
|
cache:
|
|
key:
|
|
files:
|
|
- package-lock.json
|
|
paths:
|
|
- .npm/
|
|
before_script:
|
|
- npm ci --cache .npm --prefer-offline
|
|
script:
|
|
- npm run ci
|