diff --git a/.github/workflows/make.yaml b/.github/workflows/make.yaml new file mode 100644 index 000000000..a4e1c3a56 --- /dev/null +++ b/.github/workflows/make.yaml @@ -0,0 +1,17 @@ +name: "make" +on: + push: + branches: + - "main" + pull_request: + branches: + - "main" + +jobs: + fmt-check: + name: "fmt-check" + runs-on: "ubuntu-22.04" + steps: + - uses: "actions/checkout@v4" + - uses: "actions/setup-node@v4" + - run: "make fmt-check"