Skip to content

Add setExpect API for consumer's expect implementation (#8) #4

Add setExpect API for consumer's expect implementation (#8)

Add setExpect API for consumer's expect implementation (#8) #4

Workflow file for this run

name: Update README
on:
push:
branches: [master]
paths-ignore:
- 'README.md'
permissions:
contents: write
jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm install
- run: npm test
- name: Commit README if changed
run: |
if git diff --quiet README.md; then
echo "README.md unchanged, nothing to commit."
exit 0
fi
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add README.md
git commit -m "ci: update README from test results [skip ci]"
git push