feat: 清理更多的按钮和全尺寸显示照片 #1430
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 pushes/PRs | |
| on: [push, pull_request] | |
| jobs: | |
| js-json-md-yaml-lint: | |
| name: JavaScript + JSON + Markdown + YAML | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository code | |
| uses: actions/checkout@v6 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "lts/*" | |
| - name: Install dependencies | |
| run: npm ci # instead of install to ensure consistency and determinism in CI/CD workflow | |
| - name: Run ESLint | |
| run: npm run lint |