mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-29 13:09:17 +01:00
* Add license information * Add reuse lint workflow * Add snippets for spdx * fix: minor wording adjustments and typo fixes Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> * chore: add FileContributor attributions for Bertie Co-authored-by: Bertie690 <136088738+Bertie690@users.noreply.github.com> * begin licensing some audio assets * Add pokemon reborn sound affect attribution * Annotate Leavannite's section * Add more licensing info * Add license info to license files ._. * Move ps1 files out of public * Add license for animation jsons * Add license for bat scripts in public * Update licensing in scripts * Fix typo in license ref * Fix AGPL-3.0-or-later * Add license info to typedoc.config.js * Add MIT license for snippets * chore: update license info for files in scripts * chore: update license info * chore: update license info * chore: update license info * Remove licenses used only by public before linting with reuse * Add license info to new files added by docker PR * chore: apply biome * fix: add back linting workflow lost during merge * Add attribution based on Hanniel's information * Add attribution based on Officer Porkchop and Green Ninja's information * add attribution to unicorn_power for reshiram/zekrom/kyurem epic variant * Fixup minor typo * Adjust sprite test to not think REUSE.toml is a sprite json * Add missing continue-on-error to workflow * fix: address kev's comments from code review * docs: minor touchups --------- Co-authored-by: NightKev <34855794+DayKev@users.noreply.github.com> Co-authored-by: Bertie690 <136088738+Bertie690@users.noreply.github.com>
123 lines
3.5 KiB
YAML
123 lines
3.5 KiB
YAML
name: Linting
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- beta
|
|
- release
|
|
- "hotfix*"
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
- beta
|
|
- release
|
|
- "hotfix*"
|
|
merge_group:
|
|
types: [checks_requested]
|
|
|
|
jobs:
|
|
run-linters:
|
|
name: Run all linters
|
|
timeout-minutes: 10
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out Git repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
submodules: "recursive"
|
|
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v4
|
|
|
|
- name: Set up Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: ".nvmrc"
|
|
cache: "pnpm"
|
|
|
|
- name: Install Node modules
|
|
run: pnpm i
|
|
|
|
# Lint files with Biome-Lint - https://biomejs.dev/linter/
|
|
- name: Run Biome-Lint
|
|
run: pnpm biome-ci
|
|
id: biome_lint
|
|
continue-on-error: true
|
|
|
|
# Validate dependencies with dependency-cruiser - https://github.com/sverweij/dependency-cruiser
|
|
- name: Run Dependency-Cruise
|
|
run: pnpm depcruise
|
|
id: depcruise
|
|
continue-on-error: true
|
|
|
|
# Validate types with tsc - https://www.typescriptlang.org/docs/handbook/compiler-options.html#using-the-cli
|
|
- name: Run Typecheck
|
|
run: pnpm typecheck
|
|
id: typecheck
|
|
continue-on-error: true
|
|
|
|
# The exact same thing
|
|
- name: Run Typecheck (scripts)
|
|
run: pnpm typecheck:scripts
|
|
id: typecheck-scripts
|
|
continue-on-error: true
|
|
|
|
# NOTE: This step *must* run as the last linter; it deletes files in `public/`
|
|
# Files in public/ do not yet have full licensing information, so remove them before checking for reuse compliance
|
|
- name: Prepare for reuse compliance
|
|
run: rm -rf public/* LICENSES/LicenseRef-*
|
|
|
|
- name: Check for reuse compliance
|
|
id: reuse-lint
|
|
uses: fsfe/reuse-action@v5
|
|
continue-on-error: true
|
|
|
|
- name: Evaluate for Errors
|
|
env:
|
|
BIOME_LINT_OUTCOME: ${{ steps.biome_lint.outcome }}
|
|
DEPCRUISE_OUTCOME: ${{ steps.depcruise.outcome }}
|
|
TYPECHECK_OUTCOME: ${{ steps.typecheck.outcome }}
|
|
TYPECHECK_SCRIPTS_OUTCOME: ${{ steps.typecheck-scripts.outcome }}
|
|
REUSE_OUTCOME: ${{ steps.reuse-lint.outcome }}
|
|
run: |
|
|
# Check for Errors
|
|
|
|
# Make text red.
|
|
red () {
|
|
printf "\e[31m%s\e[0m" "$1"
|
|
}
|
|
|
|
# Make text green.
|
|
green () {
|
|
printf "\e[32m%s\e[0m" "$1"
|
|
}
|
|
|
|
print_result() {
|
|
local name=$1
|
|
local outcome=$2
|
|
if [ "$outcome" == "success" ]; then
|
|
printf "$(green "✅ $name: $outcome")\n"
|
|
else
|
|
printf "$(red "❌ $name: $outcome")\n"
|
|
fi
|
|
}
|
|
|
|
print_result "Biome" "$BIOME_LINT_OUTCOME"
|
|
print_result "Depcruise" "$DEPCRUISE_OUTCOME"
|
|
print_result "Typecheck" "$TYPECHECK_OUTCOME"
|
|
print_result "Typecheck scripts" "$TYPECHECK_SCRIPTS_OUTCOME"
|
|
print_result "Reuse Compliance" "$REUSE_OUTCOME"
|
|
|
|
if [[ "$BIOME_LINT_OUTCOME" != "success" || \
|
|
"$DEPCRUISE_OUTCOME" != "success" || \
|
|
"$TYPECHECK_OUTCOME" != "success" || \
|
|
"$TYPECHECK_SCRIPTS_OUTCOME" != "success" || \
|
|
"$REUSE_OUTCOME" != "success" ]]; then
|
|
printf "$(red "❌ One or more checks failed!")\n" >&2
|
|
exit 1
|
|
fi
|
|
|
|
printf "$(green "✅ All checks passed!")\n"
|