Updated README.md for grammar adjustments and improved clarity
#129
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: Documentation | |
| on: | |
| push: | |
| branches-ignore: | |
| - main | |
| permissions: read-all | |
| env: | |
| COMPOSER_TOKEN: ${{ secrets.COMPOSER_TOKEN }} | |
| INSTANCE: docs/laravel-feeds | |
| ARTIFACT_DOCS: webHelpLARAVEL-FEEDS2-all.zip | |
| BUILDER_VERSION: 2025.04.8412 | |
| jobs: | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Build documentation | |
| uses: JetBrains/writerside-github-action@v4 | |
| with: | |
| instance: ${{ env.INSTANCE }} | |
| artifact: ${{ env.ARTIFACT_DOCS }} | |
| docker-version: ${{ env.BUILDER_VERSION }} | |
| - name: Test documentation | |
| uses: JetBrains/writerside-checker-action@v1 | |
| with: | |
| instance: ${{ env.INSTANCE }} |