A command line tool to check your UpLeveled projects before you submit
npm install @upleveled/preflightA command line tool to check your UpLeveled projects before you submit

``bash`
pnpm add --global @upleveled/preflight
`bash`
preflight
`bashPull the image
docker pull ghcr.io/upleveled/preflight
Run Preflight with GitHub Actions workflow
To run Preflight on every commit in your repository, you can use the following GitHub Actions workflow:
.github/workflows/preflight.yml`yaml
name: Preflight
on: [push]jobs:
preflight:
name: Preflight
runs-on: ubuntu-latest
steps:
- name: Pull latest Preflight image
run: docker pull ghcr.io/upleveled/preflight
- name: Run Preflight
run: docker run ghcr.io/upleveled/preflight https://github.com/${{ github.repository}} ${{ github.ref_name }}
``