mirror of
https://github.com/tribufu/node-gamedig
synced 2026-05-06 15:17:36 +00:00
38 lines
793 B
YAML
38 lines
793 B
YAML
name: Games List Markdown Validation
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "lib/games.js"
|
|
- "GAMES_LIST.md"
|
|
- "tools/generate_games_list.js"
|
|
- ".github/workflows/games_list.yml" # This action
|
|
pull_request:
|
|
paths:
|
|
- "lib/games.js"
|
|
- "GAMES_LIST.md"
|
|
- "tools/generate_games_list.js"
|
|
- ".github/workflows/games_list.yml" # This action
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
check_file:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Use Node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18.x
|
|
|
|
- name: Run games list generation
|
|
run: node tools/generate_games_list.js
|
|
|
|
- name: Check for changes
|
|
run: git diff --exit-code GAMES_LIST.md
|