Newer
Older
- chmod 600 .drawing-app-deploy.rsa
- git submodule sync --recursive
- GIT_SSH_COMMAND='ssh -i .drawing-app-deploy.rsa -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no' git submodule update --init
check_format:
stage: source_check
script:
- npx prettier --ignore-path .gitignore --check "**/*.{html,js,json,md}"
lint:
stage: source_check
script:
- npx eslint --ignore-path .gitignore "**/*.js"
backend_test:
stage: test
script:
- npm test