Update README: Encourage contribution to Community Edition (#1597) #3477
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
name: CI | |
on: | |
push: | |
branches: | |
- master | |
- ModdedGamers-GH-Actions | |
pull_request: | |
branches: | |
- master | |
jobs: | |
setup: | |
name: CI | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install ffmpeg | |
- name: Setup Node | |
uses: actions/setup-node@v2-beta | |
with: | |
node-version: 16.x | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Install Yarn Dependencies | |
run: | | |
yarn | |
cd gulp/ | |
yarn | |
cd .. | |
- name: Lint | |
run: | | |
yarn lint | |
- name: TSLint | |
run: | | |
cd gulp | |
yarn gulp translations.fullBuild | |
yarn gulp localConfig.findOrCreate | |
cd .. | |
yarn tslint | |
yaml-lint: | |
name: yaml-lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: YAML Lint | |
uses: ibiqlik/[email protected] | |
with: | |
file_or_dir: translations/*.yaml |