Importing recent changes from the master manifest #1751
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
on: | |
push: | |
branches: [master] | |
pull_request: | |
workflow_dispatch: | |
name: Validate games.json | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 📦 Checkout | |
uses: actions/[email protected] | |
- name: 🚧 Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 19 | |
- name: 🤖 Setup Project | |
run: 'yarn' | |
- name: 🔎 Check Validity | |
run: 'yarn validate' |