✨ Added Swagger API Documentation #14
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
name: Lint and Auto-Commit | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
lint-and-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: npm install # Replace with your package manager if different | |
- name: Lint code | |
run: npm run lint # Replace with your linting command | |
- name: Test code | |
run: npm run test | |
- name: Commit linted files | |
uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: "💄 Applied automatic linter" |