Remove the invalid </br> and </hr> elements after the diff again. #11
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: CI | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| run-linters: | |
| name: Run CI | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Install Node.js dependencies | |
| run: npm ci | |
| - name: Run linter | |
| run: npm run lint:ci | |
| - name: Build Assets | |
| run: npm run build | |
| - name : Run test | |
| run: npm run test:ci |