Update README.md #139
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
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: 16 # Node v16 is required for the @vercel/ncc to work. TODO: update the package tool and then update the node version here. | |
- 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 |