Skip to content

Commit b00762c

Browse files
committed
add GitLab CI configuration
1 parent ed1af80 commit b00762c

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,7 @@
33
*/node_modules/
44
# GitHub Actions workflow
55
.github/
6+
# GitLab pipelines
7+
.gitlab-ci.yml
68
# Don't copy generated images.
79
*/*.png

.gitlab-ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
image: node:14-alpine
2+
3+
node:
4+
stage: build
5+
before_script:
6+
- node --version
7+
- npm --version
8+
script:
9+
- cd ./export-server
10+
- npm install

0 commit comments

Comments
 (0)