We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed1af80 commit b00762cCopy full SHA for b00762c
2 files changed
.dockerignore
@@ -3,5 +3,7 @@
3
*/node_modules/
4
# GitHub Actions workflow
5
.github/
6
+# GitLab pipelines
7
+.gitlab-ci.yml
8
# Don't copy generated images.
9
*/*.png
.gitlab-ci.yml
@@ -0,0 +1,10 @@
1
+image: node:14-alpine
2
+
+node:
+ stage: build
+ before_script:
+ - node --version
+ - npm --version
+ script:
+ - cd ./export-server
10
+ - npm install
0 commit comments