comet/.drone.yml
Ashhhleyyy 52eddf3175
Some checks failed
continuous-integration/drone/push Build is failing
fix(ci): lets also see if we can get away without yarn installing
2022-09-25 22:27:13 +01:00

34 lines
654 B
YAML

kind: pipeline
type: docker
name: Build
platform:
os: linux
arch: arm64
steps:
# - 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
- name: Build app
image: node:16-alpine
commands:
- apk install git ca-certificates
- npx eas-cli build --platform android --non-interactive --profile preview
environment:
EXPO_TOKEN:
from_secret: EAS_TOKEN
trigger:
event: [push]
branch: [main]