feat: add experimental leveled characters support, better dungeons support and more #870
Workflow file for this run
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: Prettier | |
on: [push, pull_request] | |
jobs: | |
prettier: | |
name: Prettier | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install yarn packages | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: --cwd=./misc/prettier install | |
- name: Check prettier errors | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: --cwd=./misc/prettier prettier-check | |
continue-on-error: true |