diff --git a/.gitea/workflows/linter.yaml b/.gitea/workflows/linter.yaml index 18430eb..0045782 100644 --- a/.gitea/workflows/linter.yaml +++ b/.gitea/workflows/linter.yaml @@ -4,8 +4,12 @@ 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 + - name: Checkout code + uses: actions/checkout@v3 + + - name: Install ESLint + run: | + npm install eslint + + - name: Run ESLint + run: npx eslint .