Adds an invite command to toriel #637
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: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
# yamllint: | |
# name: YAML Lint | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Check out code | |
# uses: actions/checkout@v2 | |
# - name: Run yamllint | |
# uses: actionshub/yamllint@main | |
# mdl: | |
# name: Markdown Lint | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Check out code | |
# uses: actions/checkout@v2 | |
# - name: Run Markdown Lint | |
# uses: actionshub/markdownlint@main | |
# with: | |
# filesToIgnoreRegex: '((old|node_modules)\/.*)' | |
prettier: | |
name: Prettier | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Run prettier | |
uses: actionsx/prettier@v2 | |
with: | |
# Prettier CLI arguments | |
args: --check "**/*.js" |