Skip to content

discogs_importer: subtracks in Discogs to separete tracks in Musicbrainz #750

discogs_importer: subtracks in Discogs to separete tracks in Musicbrainz

discogs_importer: subtracks in Discogs to separete tracks in Musicbrainz #750

Workflow file for this run

name: CI
on: pull_request
jobs:
linter:
name: 'lint checks'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7.0.0
- uses: pnpm/action-setup@v6.0.9
with:
run_install: false
- uses: actions/setup-node@v6.4.0
with:
node-version-file: 'package.json'
cache: 'pnpm'
- name: 'Install dependencies'
run: pnpm install --frozen-lockfile
- name: 'Format check'
run: pnpm format:check
- name: 'Run type checking'
run: pnpm type-check
- name: 'Run linter'
run: pnpm lint
- name: 'Build userscripts'
run: pnpm build
- name: 'Run tests'
run: pnpm test