Add region output to README (#236)
#161
This file contains hidden or 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
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| name: Package | |
| jobs: | |
| package: | |
| name: Package distribution files | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| ref: main | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Install packages | |
| run: npm ci | |
| - name: Run linter | |
| run: npm run lint | |
| - name: Package | |
| run: npm run package | |
| - name: Commit | |
| run: | | |
| git config --global user.name "GitHub Actions" | |
| git add dist/ | |
| git commit -m "Update dist" || echo "No changes to commit" | |
| git push origin main |