This repository was archived by the owner on Aug 3, 2026. It is now read-only.
docs: removed text from changelog #516
Workflow file for this run
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: eslint | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| types: [opened, synchronize] | |
| jobs: | |
| tests: | |
| name: Run eslint | |
| timeout-minutes: 15 | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: Fetch main branch | |
| run: git fetch --no-tags --depth=1 origin main | |
| - name: Setup Node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18.x.x | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install docs dependencies | |
| run: cd ./docs && npm ci | |
| - name: build | |
| run: cd ./docs && npm run build |