feat: re-enable nft-quest #1438
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9.11.0 | |
| - name: Use Node.js | |
| uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 | |
| with: | |
| node-version: lts/Iron | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install -r --frozen-lockfile | |
| - name: ESLint | |
| run: pnpm run lint:eslint | |
| - name: Markdownlint | |
| run: pnpm run lint:markdown | |
| - name: Prettier | |
| run: pnpm run lint:prettier | |
| - name: Spellcheck | |
| run: pnpm run lint:spelling | |