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]