mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-27 18:58:08 +00:00
Install modules only if needed
This commit is contained in:
parent
29d5d2ca26
commit
2ab0120e21
@ -4,9 +4,6 @@ cache:
|
||||
paths:
|
||||
- node_modules
|
||||
|
||||
before_script:
|
||||
- yarn install
|
||||
|
||||
stages:
|
||||
- test
|
||||
- build
|
||||
@ -15,6 +12,7 @@ stages:
|
||||
lint:
|
||||
stage: test
|
||||
script:
|
||||
- yarn install
|
||||
- yarn run lint
|
||||
|
||||
flow:
|
||||
@ -25,11 +23,13 @@ flow:
|
||||
unit:
|
||||
stage: test
|
||||
script:
|
||||
- yarn install
|
||||
- yarn run test
|
||||
|
||||
build development:
|
||||
stage: build
|
||||
script:
|
||||
- yarn install
|
||||
- yarn run build:dev
|
||||
artifacts:
|
||||
expire_in: 1 month
|
||||
@ -39,6 +39,7 @@ build development:
|
||||
build beta:
|
||||
stage: build
|
||||
script:
|
||||
- yarn install
|
||||
- yarn run build:beta
|
||||
artifacts:
|
||||
expire_in: 1 month
|
||||
@ -49,6 +50,7 @@ build beta:
|
||||
build stable:
|
||||
stage: build
|
||||
script:
|
||||
- yarn install
|
||||
- yarn run build:stable
|
||||
artifacts:
|
||||
expire_in: 1 month
|
||||
|
Loading…
Reference in New Issue
Block a user