comet/.woodpecker.yml
Ashhhleyyy e7220db4a7
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Update '.woodpecker.yml'
2023-08-02 17:51:07 +00:00

29 lines
614 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
- env CI=true npx eas-cli build --platform android --non-interactive --profile preview
secrets:
- expo_token
environment:
- CI=true
trigger:
event: [push]
branch: [main]