Skip to content

feat(play): Add Playlist URL to the return of createPlaylist (#29) #39

feat(play): Add Playlist URL to the return of createPlaylist (#29)

feat(play): Add Playlist URL to the return of createPlaylist (#29) #39

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
lint-typecheck:
name: Lint and Typecheck
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Cache npm dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install dependencies
run: npm install
- name: Run Biome linting
run: npm run lint
- name: Run TypeScript type checking
run: npm run typecheck