27 lines
568 B
YAML
27 lines
568 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
|
|
|
|
trigger:
|
|
event: [push]
|
|
branch: [main]
|