Update dependency start-server-and-test to v2.0.9 (#254) #1032
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
# when pushing to master branch, format Markdown using Prettier | |
# and if there are any changes, push back to repo | |
# https://glebbahmutov.com/blog/trying-github-actions/ | |
name: prettier | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Prettier | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: bahmutov/npm-install@v1 | |
- name: Format source files 👔 | |
run: npm run format | |
- name: Update version badges 🏷 | |
run: npm run badges | |
# commit any changed files | |
# https://github.com/mikeal/publish-to-github-action | |
- uses: mikeal/publish-to-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |