name: Lint on: pull_request: push: branches: - main jobs: lint: runs-on: ubuntu-latest strategy: matrix: node-version: [20.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - run: yarn - name: Build libs run: yarn workspace gql-client run build - name: Linter check run: yarn lint