aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 996e6b1a2dd8ce23d06178c1cfce9adbe5aec8d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
image: node:14-buster

cache:
    paths:
        - node_modules/

test:
    stage: test
    before_script:
        - apt-get update -y -qq
        - DEBIAN_FRONTEND=noninteractive apt-get install -y -qq git libpcre3 libpcre2-posix0 libkrb5-3 libk5crypto3 libcom-err2 libssl1.1 libssl-dev
    script:
        - yarn install
        - yarn test --ci=true