From a1e97f833455fb9d6550127b96ced1c4e164049f Mon Sep 17 00:00:00 2001 From: hazycora Date: Tue, 30 Jul 2024 13:19:59 -0500 Subject: [PATCH] add lint workflow not sure that this works yet, we will see --- .forgejo/workflows/lint.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .forgejo/workflows/lint.yml diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml new file mode 100644 index 0000000..9bf19d7 --- /dev/null +++ b/.forgejo/workflows/lint.yml @@ -0,0 +1,16 @@ +name: Lint + +on: + pull_request: + push: + branches: + - main + +jobs: + eslint: + runs-on: docker + steps: + - name: Checkout repository + uses: https://code.forgejo.org/actions/checkout@v4 + - run: pnpm install --frozen-lockfile + - run: pnpm run lint