Skip to content

Commit

Permalink
Add GitLab CI configuration for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
amaan-igs committed Nov 11, 2024
1 parent 3493159 commit af6a7ce
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
image: node:18

stages:
- build

cache:
paths:
- node_modules/

before_script:
- npm ci
- npm install -g vitepress

build-docs:
stage: build
script:
- npm run docs:build -- --host
- mv docs/.vitepress/dist public
artifacts:
paths:
- public
only:
- main

0 comments on commit af6a7ce

Please sign in to comment.