mirror of
https://github.com/jaedle/mirror-to-gitea.git
synced 2026-01-09 12:57:55 -05:00
17 lines
263 B
YAML
17 lines
263 B
YAML
version: '3'
|
|
|
|
tasks:
|
|
world:
|
|
aliases: [ default ]
|
|
cmds:
|
|
- task: clean
|
|
- task: check
|
|
- task: test
|
|
- task: build
|
|
|
|
run-local: ./run-local.sh
|
|
|
|
clean: npm run clean
|
|
check: npm run check
|
|
test: npm run test
|
|
build: npm run build |