Ashhhleyyy
e7220db4a7
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
29 lines
614 B
YAML
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]
|