/docker-test

lightweight testing suite

Primary LanguageGo

What is this?

Simple Shell For Run docker image inspired from gitlab ci

How to use it?

create configurationfile in yml format like this

cache:
  paths:
    - /node_modules
test: 
  image: node:20-slim
  before_script:
    - npm ci --legacy-peer-deps
  script:
    - npm run test

and run the command

go run main.go -c config.yml <path for project>

How to build it?

go build -o builder .