add explicit WebGL2 and core capabilities checks #144
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: auto-format | |
| on: | |
| push: | |
| jobs: | |
| format: | |
| runs-on: ubuntu-latest | |
| if: ${{ false }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Prettify code | |
| uses: creyD/prettier_action@8c18391fdc98ed0d884c6345f03975edac71b8f0 # v4.6 | |
| with: | |
| prettier_options: --tab-width 4 --print-width 110 --write **/**/*.java | |
| prettier_version: "2.8.8" | |
| only_changed: True | |
| commit_message: "auto-format" | |
| prettier_plugins: "prettier-plugin-java" |