test(eslint): remove rule for sorting package.json
file (#120)
#299
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: Build | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
build-package: | |
name: Build Package | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: latest | |
- name: Install Dependencies | |
uses: threeal/yarn-install-action@main | |
- name: Build Package | |
run: | | |
corepack yarn build | |
git diff --exit-code --text HEAD |