diff --git a/.gitea/workflows/linter.yaml b/.gitea/workflows/linter.yaml new file mode 100644 index 0000000..18430eb --- /dev/null +++ b/.gitea/workflows/linter.yaml @@ -0,0 +1,11 @@ +name: CI +on: push +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Install modules + run: yarn + - name: Run ESLint + run: eslint \ No newline at end of file