π add development playlist link to README (#259) #933
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: scripts | |
on: [push] | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-yarn | |
- name: Run Prettier | |
run: yarn start lint.scripts.prettier.check | |
lint: | |
runs-on: ubuntu-latest | |
needs: format | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup-yarn | |
- name: Run ESLint | |
run: yarn start lint.scripts.eslint.check | |
- name: Run custom lint scripts on non-datapacks, non-resourcepack files | |
run: yarn start lint.custom.other | |
env: | |
FORCE_COLOR: 2 |