blob: 9e385053d4b14565dfa3704128ebd338e830c43a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
image: node:latest
cache:
paths:
- node_modules/
test:
before_script:
- apt-get update -y -qq
- apt-get install -y -qq apt-utils
- apt-get install -y -qq git libpcre3 libpcre2-posix0 libkrb5-3 libk5crypto3 libcom-err2 libssl1.1 libssl-dev
script:
- yarn install
- yarn test
|