Skip to content

1.12.4-rc.7

1.12.4-rc.7 #259

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Checkout spotify.js
- uses: actions/setup-node@v4
- uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install
- name: ESLint
run: yarn lint
- name: TSC Linter
run: yarn lint:tsc