@andreas-timm/create-contract-template
Version:
Contract (EVM) development and maintain system template.
22 lines (21 loc) • 355 B
YAML
image: oven/bun:alpine
cache:
paths:
- node_modules/
stages:
- test
test:
stage: test
before_script:
- apk update && apk add git python3 nodejs npm
- bun install
script:
- bun run test-report
artifacts:
when: always
paths:
- report.html
- report.json
- report.xml
reports:
junit: report.xml