Skip to content
Snippets Groups Projects
Verified Commit ab20208f authored by Georg Krause's avatar Georg Krause
Browse files

Initial CI pipeline

parent 099772f6
Branches
Tags
No related merge requests found
......@@ -23,4 +23,4 @@ pnpm-debug.log*
*.sw?
# vitepress
src/.vitepress/dist
public
stages:
- build
- test
- deploy
default:
image: node:16-slim
before_script:
- yarn install
build:
stage: build
script: yarn build
pages:
stage: build
script: yarn docs:build
artifacts:
paths:
- public
test:
script: yarn test
module.exports = {
title: "Funkwhale Vue Components",
outDir: "../public",
themeConfig: {
nav: [
{ text: "Home", link: "https://funkwhale.audio" },
......
......@@ -11,5 +11,6 @@
"esModuleInterop": true,
"lib": ["esnext", "dom"]
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"exclude": ["src/**/*.test.ts"]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment