Modified the poster image logic for audio records #411
Workflow file for this run
This file contains hidden or 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 Prettify code | |
| on: [push, pull_request] | |
| jobs: | |
| lint-and-prettify: | |
| name: Lint and Prettify | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "20" | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Install npm dependencies | |
| run: npm install | |
| - name: Lint code | |
| run: npm run lint-code | |
| - name: Lint styles | |
| run: npm run lint-styles | |
| - name: Prettify code | |
| run: npm run prettify | |
| - name: Auto-commit fixes | |
| uses: EndBug/add-and-commit@v9 | |
| with: | |
| default_author: github_actions | |
| add: "['src/']" |