aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: bdafecd3499ee0d7d049c5ddfc9f8a9eb351e619 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
image: node:18

stages:
  - lint
  - test

before_script:
  - npm install

lint:
  stage: lint
  script:
    - npm run lint
test:
  stage: test
  script:
    - npm run test