chore(deps-dev): bump semantic-release from 24.2.9 to 25.0.1 #203
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: Check Docs | |
| on: | |
| schedule: | |
| # Run on the 1st of February, April, June, August, October, and December @ 00:00AM UTC-3 | |
| - cron: '0 3 1 FEB,APR,JUN,AUG,OCT,DEC *' | |
| push: | |
| branches: [main] | |
| pull_request: | |
| types: [synchronize, opened, reopened, ready_for_review, converted_to_draft] | |
| concurrency: | |
| group: check-docs_${{ github.workflow }}_${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| check_docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: npm | |
| - name: Install Dependencies | |
| run: npm ci --ignore-scripts | |
| - name: Run Check Docs | |
| run: npm run check-docs |