Skip to content

Update Spotify.ts

Update Spotify.ts #26

Workflow file for this run

name: Prettier & docs Code
on:
push:
branches: [ master ]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-node@v3
with:
node-version: "18.x"
- run: npm i -g prettier
- run: npm run prettier-format
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: automatic tidy up code
branch: ${{ github.head_ref }}