Skip to content

Commit

Permalink
Example using yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
kmturley committed May 4, 2024
1 parent 3c4e47b commit 6086f3c
Show file tree
Hide file tree
Showing 11 changed files with 735 additions and 88 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Release

on:
on:
workflow_dispatch:
schedule:
# https://crontab.guru/weekly
# https://crontab.guru/weekly
- cron: '0 0 * * 0'

jobs:
Expand Down
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
# studiorack-registry

![Release](https://github.com/studiorack/studiorack-registry/workflows/Release/badge.svg)

Audio plugin registry with searchable plugin list, metadata and download urls using:

* NodeJS 12.x
* TypeScript 4.x

- NodeJS 20.x
- TypeScript 5.x

## Installation

Install dependencies using:

npm install


## Usage

Setup a personal access token on [GitHub](https://github.com/settings/tokens) with `public_repo` access. Export in your terminal:
Expand All @@ -32,7 +31,6 @@ Run the production build:

npm start


## How it works

The StudioRack Registry uses GitHub as a source of truth for plugins. We search the GitHub API for topic `studiosrack-plugin`:
Expand Down Expand Up @@ -118,7 +116,6 @@ This registry json is updated once a day, and used for the StudioRack website, a

https://studiorack.github.io/studiorack-registry/


## Contact

For more information please contact kmturley
42 changes: 0 additions & 42 deletions __tests__/main.test.ts

This file was deleted.

2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
moduleNameMapper: {
'^(\\.{1,2}/.*)\\.(m)?js$': '$1',
},
testRegex: '(/__tests__/.*|(\\.|/)(test|spec))\\.(m)?ts$',
testRegex: '(/tests/.*|(\\.|/)(test|spec))\\.(m)?ts$',
coverageDirectory: 'coverage',
collectCoverageFrom: [
'src/**/*.ts',
Expand Down
Loading

0 comments on commit 6086f3c

Please sign in to comment.