Skip to content

Commit

Permalink
v7 beta
Browse files Browse the repository at this point in the history
  • Loading branch information
katspaugh committed May 28, 2023
1 parent a97f714 commit c77eba6
Show file tree
Hide file tree
Showing 271 changed files with 10,260 additions and 74,284 deletions.
22 changes: 0 additions & 22 deletions .babelrc

This file was deleted.

51 changes: 0 additions & 51 deletions .esdoc.json

This file was deleted.

59 changes: 0 additions & 59 deletions .eslintrc.js

This file was deleted.

25 changes: 25 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:prettier/recommended"
],
"overrides": [
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
},
"ignorePatterns": ["cypress", "examples", "tutorial", "src/plugins/spectrogram*"]
}
2 changes: 1 addition & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
github: [thijstriemstra, katspaugh]
github: [katspaugh]
10 changes: 10 additions & 0 deletions .github/workflows/build/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: 'Build'

description: 'Build the app'

runs:
using: 'composite'
steps:
- name: Build
shell: bash
run: yarn build
31 changes: 31 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: e2e

on:
pull_request:

jobs:
e2e:
runs-on: ubuntu-latest
name: E2E tests
steps:
- uses: actions/checkout@v3

- uses: ./.github/workflows/yarn

- name: Install Cypress
run: |
./node_modules/.bin/cypress install
- uses: ./.github/workflows/build

- uses: cypress-io/github-action@v4
with:
spec: cypress/e2e/*.cy.js
browser: chrome
record: false

- uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-screenshots
path: cypress/screenshots
14 changes: 14 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Lint
on: [pull_request]

jobs:
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: ./.github/workflows/yarn

- uses: Maggi64/eslint-plus-action@master
with:
npmInstall: false
51 changes: 0 additions & 51 deletions .github/workflows/main.yml

This file was deleted.

64 changes: 0 additions & 64 deletions .github/workflows/publish.yml

This file was deleted.

Loading

0 comments on commit c77eba6

Please sign in to comment.