comet/.woodpecker.yml
Ashhhleyyy e921cc6bf7
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
fix(ci): aaaa
2023-08-02 18:39:03 +01:00

29 lines
601 B
YAML

platform: linux/arm64
pipeline:
# - name: Install dependencies
# image: node:16-alpine
# commands:
# - yarn install
# TODO: setup linting
# - name: Check formatting
# image: node-pnpm:16-alpine
# commands:
# - pnpm format:check
# - name: Lint code
# image: node-pnpm:16-alpine
# commands:
# - pnpm lint
build:
image: node:16-alpine
commands:
- apk add git ca-certificates
- npx eas-cli build --platform android --non-interactive --profile preview
secrets:
- eas_token
environment:
- CI=true
trigger:
event: [push]
branch: [main]