pipechecker 0.3.1

CI/CD Pipeline Auditor - Catch errors before you push
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
stages:
  - test
  - lint

test:
  stage: test
  image: node:20-alpine
  script:
    - npm ci
    - npm test

lint:
  stage: lint
  image: node:20-alpine
  script:
    - npm ci
    - npm run lint