2 Revize ae4efc0c46 ... 7fdb9ee1e2

Autor SHA1 Zpráva Datum
  Hayden K 7fdb9ee1e2 Test GitLab CI (probably won't work lol) před 1 týdnem
  Hayden K 638a4e9e0e Remove space from filename of the basic setup page před 6 měsíci
2 změnil soubory, kde provedl 27 přidání a 0 odebrání
  1. 27 0
      .gitlab-ci.yml
  2. 0 0
      docs/tutorials/welcome/basic-setup.mdx

+ 27 - 0
.gitlab-ci.yml

@@ -0,0 +1,27 @@
+image: node:lts
+
+stages:
+  - test
+  - deploy
+
+test:
+  stage: test
+  script:
+  - cd website
+  - npm install --force
+  - npm run build
+  except:
+    - master
+
+pages:
+  stage: deploy
+  script:
+  - cd website
+  - npm install --force
+  - npm run build
+  - mv ./build ../public
+  artifacts:
+    paths:
+    - public
+  only:
+    - master

docs/tutorials/welcome/Basic Setup.mdx → docs/tutorials/welcome/basic-setup.mdx