comet/.woodpecker.yml

30 lines
600 B
YAML
Raw Normal View History

2023-08-02 17:05:46 +00:00
platform: linux/arm64
2022-09-25 21:04:31 +00:00
2023-08-02 17:05:46 +00:00
pipeline:
# - name: Install dependencies
# image: node:16-alpine
# commands:
# - yarn install
2022-09-25 21:04:31 +00:00
# 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
2023-08-02 17:05:46 +00:00
build:
image: node:16-alpine
commands:
- apk add git ca-certificates
- npx eas-cli build --platform android --non-interactive --profile preview
secrets:
- eas_token
2023-08-02 17:30:41 +00:00
environment:
CI: true
2022-09-25 21:04:31 +00:00
trigger:
event: [push]
branch: [main]