Discord-InterChat/InterChat

View on GitHub
.github/workflows/lint.yml

Summary

Maintainability
Test Coverage
name: Lint
on: pull_request
jobs:
  tests:
    name: Lint Check
    runs-on: ubuntu-latest
    strategy:
      matrix:
        node-version: [20]

    steps:
      - uses: actions/checkout@v4
      - name: Install pnpm
        uses: pnpm/action-setup@v4
        with:
          version: 9.6.0
      - name: Use Node.js ${{ matrix.node-version }}
        uses: actions/setup-node@v4
        with:
          node-version: ${{ matrix.node-version }}
          cache: 'pnpm'

      - name: Install dependencies
        run: pnpm add eslint

      - name: Lint files
        run: pnpm eslint --no-fix src/