From d3c00de0660e71d7a2125c791e92da353e4750dc Mon Sep 17 00:00:00 2001 From: seeleng Date: Thu, 19 Sep 2024 14:41:48 +0800 Subject: [PATCH] feat: add frontend linter --- .github/workflows/lint.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml new file mode 100644 index 00000000..5f81fde9 --- /dev/null +++ b/.github/workflows/lint.yml @@ -0,0 +1,8 @@ +name: CI +on: push +jobs: + eslint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: stefanoeb/eslint-action@1.0.2