docs: fix docsearch transformation #2956
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
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| name: Lint code and commits | |
| jobs: | |
| lint-code: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: timbru31/ruby-node:3.3-22 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - run: chmod -R 777 . | |
| - run: npm ci | |
| - run: npm run lint-js | |
| - run: npm run lint-scss | |
| lint-commits: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Fixup git permissions | |
| # https://github.com/actions/checkout/issues/766 | |
| shell: bash | |
| run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
| - uses: actions/setup-node@v2.1.0 | |
| - run: npm install @commitlint/cli | |
| - run: npx commitlint --from HEAD~${{ github.event.pull_request.commits }} --to HEAD |