diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml new file mode 100644 index 0000000..12592ca --- /dev/null +++ b/.github/workflows/CI.yml @@ -0,0 +1,16 @@ +name: CI + +on: + push: + branches: main + pull_request: + +jobs: + format: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: latest + - run: npx prettier . --check