mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-11-25 00:06:18 +00:00
5e151f5604
* Removed local translation files added translations submodule [Enhancement] Add post-merge command to update submodules in lefthook configuration [Enhancement] Add postinstall script to install lefthook after package installation [Enhancement] Update postinstall script to run post-merge command after lefthook installation * Add subproject commit for locales directory * Remove translation team assignments from CODEOWNERS * Add recursive submodule checkout to workflow files and update README for translations * fix: run without locales present (#4539) some code was hard-wired with locales having to be present. This is no longer the case now --------- Co-authored-by: flx-sta <50131232+flx-sta@users.noreply.github.com>
38 lines
1.3 KiB
YAML
38 lines
1.3 KiB
YAML
name: ESLint
|
|
|
|
on:
|
|
# Trigger the workflow on push or pull request,
|
|
# but only for the main branch
|
|
push:
|
|
branches:
|
|
- main # Trigger on push events to the main branch
|
|
- beta # Trigger on push events to the beta branch
|
|
pull_request:
|
|
branches:
|
|
- main # Trigger on pull request events targeting the main branch
|
|
- beta # Trigger on pull request events targeting the beta branch
|
|
merge_group:
|
|
types: [checks_requested]
|
|
|
|
jobs:
|
|
run-linters: # Define a job named "run-linters"
|
|
name: Run linters # Human-readable name for the job
|
|
runs-on: ubuntu-latest # Specify the latest Ubuntu runner for the job
|
|
|
|
steps:
|
|
- name: Check out Git repository # Step to check out the repository
|
|
uses: actions/checkout@v4 # Use the checkout action version 4
|
|
with:
|
|
submodules: 'recursive'
|
|
|
|
- name: Set up Node.js # Step to set up Node.js environment
|
|
uses: actions/setup-node@v4 # Use the setup-node action version 4
|
|
with:
|
|
node-version: 20 # Specify Node.js version 20
|
|
|
|
- name: Install Node.js dependencies # Step to install Node.js dependencies
|
|
run: npm ci # Use 'npm ci' to install dependencies
|
|
|
|
- name: eslint # Step to run linters
|
|
run: npm run eslint-ci
|