chore: add thanks.dev #2023
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: eslint.org | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
ci: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
cache: "npm" | |
- name: Install website dependencies | |
run: npm ci | |
- name: Install playground dependencies | |
run: npm run install:playground | |
- name: Lint Files | |
run: npm run lint | |
- name: Check Formatting | |
run: npm run fmt:check | |
- name: Run build | |
run: npm run build | |
- name: Validate Internal Links | |
run: npm run lint:links |