[UX] check if in hp, request fullscreen if not. handle fullscreen exit #3
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: Lint and Prettier | |
on: | |
pull_request: | |
branches: [main, stable] | |
workflow_dispatch: | |
jobs: | |
lint_and_prettier_job: | |
uses: HyperPlay-Gaming/workflows/.github/workflows/nodejs_commands.yml@main | |
with: | |
node_version: '20' | |
pkg_manager: 'pnpm' | |
install: 'pnpm i' | |
name: 'lint' | |
command_one: 'pnpm lint' | |
command_one_name: 'Lint code.' | |
command_two: 'pnpm prettier' | |
command_two_name: 'Prettier code.' | |
checkout_recursive: false | |
secrets: | |
NPM_TOKEN: '${{ secrets.NPM_TOKEN }}' |