Skip to content

fix(dashboard): correct create now playing overlay #1556

fix(dashboard): correct create now playing overlay

fix(dashboard): correct create now playing overlay #1556

name: Build and lint
on:
push:
jobs:
build-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- uses: pnpm/action-setup@v2
with:
version: 9
run_install: false
- uses: actions/setup-go@v4
with:
go-version-file: go.work
cache-dependency-path: '**/*.sum'
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: |
pnpm cli deps --skip-node --skip-go
pnpm install
- name: Build
run: pnpm cli build
# - name: Lint javascript
# run: pnpm run lint
# - name: golangci-lint
# uses: golangci/golangci-lint-action@v3
# with:
# version: v1.55.2