-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
74 lines (66 loc) · 1.27 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
stages:
- test
- deploy
include:
- template: Dependency-Scanning.gitlab-ci.yml
- template: SAST.gitlab-ci.yml
- template: Code-Quality.gitlab-ci.yml
sast:
variables:
SAST_EXCLUDED_PATHS: test/**
code_quality:
rules:
- if: '$CI_COMMIT_TAG'
when: never
lint-node:
image: node
stage: test
tags:
- docker
script:
- npm install -g eslint
- eslint --ignore-pattern "**/*.min.js" "$CI_PROJECT_DIR/lib"
test-node:
coverage: '/Statements\s*:\s*(\d+(?:\.\d+)?\%)/'
image: registry.gitlab.com/gcsboss/docker-mocha-nyc:0.1.0-alpine
stage: test
artifacts:
paths: [coverage]
tags:
- docker
script:
- npm i -P --no-optional .
- npm run coverage
lint-deno:
image: hayd/ubuntu-deno:1.6.2
stage: test
tags:
- docker
script:
- cd deno
- deno lint --unstable --ignore=test.js
test-deno:
coverage: '/(\d+\.\d+\%)/'
image: hayd/ubuntu-deno:1.6.2
stage: test
tags:
- docker
script:
- cd deno
- deno test --allow-read --allow-write --coverage --unstable
# Publish package to NPM
publish:
stage: deploy
image: node
tags:
- docker
only:
- tags
- triggers
except:
variables:
- $CI_COMMIT_TAG =~ /beta/
script:
- npm install -g npm-cli-login
- npm-cli-login
- npm publish