26 lines
376 B
YAML
26 lines
376 B
YAML
image: node:latest
|
|
|
|
cache:
|
|
paths:
|
|
- node_modules/
|
|
|
|
all_tests:
|
|
stage: test
|
|
script:
|
|
- echo $PATH
|
|
- make -f test/lora32/Makefile defconfig all
|
|
- npm install --unsafe-perm
|
|
- npm test
|
|
artifacts:
|
|
paths:
|
|
- public
|
|
|
|
#pages:
|
|
# stage: deploy
|
|
# dependencies:
|
|
# - all_tests
|
|
# script:
|
|
# - echo "Echo"
|
|
# artifacts:
|
|
# paths:
|
|
# - public
|