Merge branch 'main' into testPR #88
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] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Test and build | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm install | |
- name: Test | |
run: npm test | |
- name: Build | |
run: npm run build | |
- name: Commit | |
run: | | |
if git diff --exit-code; then | |
echo "No changes to commit." | |
exit 0 | |
else | |
git config user.name github-actions | |
git config user.email github-actions@github.com | |
git add . | |
git commit -m "Update dist" | |
git push | |
fi |