Files
mirror-to-gitea/Taskfile.yml
2024-09-24 16:50:12 +02:00

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