release: 4.0.0 #931
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: 🎨 Lint | |
on: | |
push: | |
branches: | |
- new-dawn | |
pull_request: | |
jobs: | |
style: | |
name: Check code style | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node & Install dependencies | |
uses: ./.github/actions/setup | |
- name: Check linter | |
run: pnpm run lint:check | |
- name: Check order in package.json | |
if: success() || failure() # Run even if the previous step fails | |
run: pnpm run sort-package-json:check |