Update mystery-events.yml

This commit is contained in:
flx-sta 2024-07-17 22:38:33 -07:00 committed by GitHub
parent 0c397db686
commit 2b8246e2f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,8 +14,8 @@ on:
- mystery-battle-events # Trigger on pull request events targeting the mystery-battle-events branch
jobs:
run-linters: # Define a job named "run-linters"
name: Run linters # Human-readable name for the job
lint: # Define a job named "run-linters"
name: Lint # Human-readable name for the job
runs-on: ubuntu-latest # Specify the latest Ubuntu runner for the job
steps:
@ -33,8 +33,8 @@ jobs:
- name: eslint # Step to run linters
run: npm run eslint-ci
run-tests: # Define a job named "run-tests"
name: Run tests # Human-readable name for the job
test: # Define a job named "run-tests"
name: Test # Human-readable name for the job
runs-on: ubuntu-latest # Specify the latest Ubuntu runner for the job
steps: