Fix JavaScript glass tab lens rendering #1299
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: Check since tags | |
| # Fails the build if Java sources under CodenameOne/src carry @since tags or | |
| # Markdown/Javadoc "Since" sections. Generated documentation changes have | |
| # repeatedly guessed versions, which is worse than omitting the metadata. | |
| permissions: | |
| contents: read | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - master | |
| paths: | |
| - 'CodenameOne/src/**/*.java' | |
| - 'scripts/check-since-tags.sh' | |
| - '.github/workflows/check-since-tags.yml' | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - 'CodenameOne/src/**/*.java' | |
| - 'scripts/check-since-tags.sh' | |
| - '.github/workflows/check-since-tags.yml' | |
| jobs: | |
| check-since-tags: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Reject since markers in API docs | |
| shell: bash | |
| run: scripts/check-since-tags.sh |