Skip to content
Snippets Groups Projects
Commit 266ba065 authored by Julian's avatar Julian
Browse files

Update pipeline config to not ignore lint

parent f1c723d1
No related branches found
No related tags found
1 merge request!40Fix Docs build and host to pages
# The Docker image that will be used to build your app # The Docker image that will be used to build your app
image: node:lts image: node:latest
stages:
- test
- pages
# Functions that should be executed before the build script is run # Functions that should be executed before the build script is run
before_script: before_script:
- npm ci - npm install
- mkdir public - mkdir public
lint-test-job:
stage: test
script:
- npm run lint
pages: pages:
stage: pages
script: script:
- npm run docs:build - npm run docs:build
- mv docs/.vuepress/dist/* public - mv docs/.vuepress/dist/* public
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment