chss/.drone.yml
Ashhhleyyy 6b97fc47a3
Some checks failed
continuous-integration/drone/push Build is failing
fix(ci): Correct architecture
2022-07-04 21:07:42 +01:00

20 lines
304 B
YAML

kind: pipeline
type: docker
name: Build
platform:
os: linux
arch: arm64
steps:
- name: Build and check formatting
image: node:14-alpine
commands:
- yarn global add pnpm
- pnpm install --frozen-lockfile
- pnpm build
- pnpm format:check
trigger:
event: [push]
branch: [main]