Merge remote-tracking branch 'origin/develop' into chats-tsx
This commit is contained in:
commit
babb8ce42c
1 changed files with 9 additions and 5 deletions
|
@ -3,12 +3,13 @@ image: node:18
|
||||||
variables:
|
variables:
|
||||||
NODE_ENV: test
|
NODE_ENV: test
|
||||||
|
|
||||||
cache:
|
cache: &cache
|
||||||
key:
|
key:
|
||||||
files:
|
files:
|
||||||
- yarn.lock
|
- yarn.lock
|
||||||
paths:
|
paths:
|
||||||
- node_modules/
|
- node_modules/
|
||||||
|
policy: pull
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- deps
|
- deps
|
||||||
|
@ -21,13 +22,16 @@ deps:
|
||||||
only:
|
only:
|
||||||
changes:
|
changes:
|
||||||
- yarn.lock
|
- yarn.lock
|
||||||
|
cache:
|
||||||
|
<<: *cache
|
||||||
|
policy: push
|
||||||
|
|
||||||
danger:
|
danger:
|
||||||
stage: test
|
stage: test
|
||||||
script: npx danger ci
|
script:
|
||||||
cache: []
|
# https://github.com/danger/danger-js/issues/1029#issuecomment-998915436
|
||||||
only:
|
- export CI_MERGE_REQUEST_IID=${CI_OPEN_MERGE_REQUESTS#*!}
|
||||||
- merge_requests
|
- npx danger ci
|
||||||
|
|
||||||
lint-js:
|
lint-js:
|
||||||
stage: test
|
stage: test
|
||||||
|
|
Loading…
Reference in a new issue