Merging of SEO optimizations, sitemap and robots.txt
#153
Workflow file for this run
This file contains 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: Linting | |
on: [pull_request] | |
permissions: | |
checks: write | |
contents: write | |
jobs: | |
run-checks: | |
name: Run checks | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18] | |
steps: | |
- name: Checkout Git repository | |
uses: actions/[email protected] | |
- name: Setup pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: latest | |
- name: Setup Node.js | |
uses: actions/[email protected] | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Install Node.js dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Run linters | |
uses: wearerequired/[email protected] | |
with: | |
eslint: true | |
prettier: true |