Skip to content

Merge branch 'main' into testPR #88

Merge branch 'main' into testPR

Merge branch 'main' into testPR #88

Workflow file for this run

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