Enable safemode for gpu that do not support webgl2, print gpu details… #45
Workflow file for this run
This file contains 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 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Prettify code | |
uses: creyD/[email protected] | |
with: | |
prettier_options: --tab-width 4 --ignore-unknown --print-width 110 --write **/**/*.{js,css} | |
prettier_version: "3.0.3" | |
only_changed: True | |
commit_message: "auto-format" |