diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index c8f7ebb..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1 +0,0 @@ -ko_fi: softprops \ No newline at end of file diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index 6861674..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,14 +0,0 @@ -version: 2 -updates: -- package-ecosystem: npm - directory: "/" - schedule: - interval: weekly - ignore: - - dependency-name: node-fetch - versions: - - ">=3.0.0" -- package-ecosystem: github-actions - directory: "/" - schedule: - interval: weekly diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index a3936e6..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Main - -on: [pull_request, push] - -jobs: - build: - runs-on: ubuntu-latest - steps: - # https://github.com/actions/checkout - - name: Checkout - uses: actions/checkout@v3 - - name: Install - run: npm ci - - name: Build - run: npm run build - - name: Test - run: npm run test - - name: Format - run: npm run fmtcheck - # - name: "check for uncommitted changes" - # # Ensure no changes, but ignore node_modules dir since dev/fresh ci deps installed. - # run: | - # git diff --exit-code --stat -- . ':!node_modules' \ - # || (echo "##[error] found changed files after build. please 'npm run build && npm run fmt'" \ - # "and check in all changes" \ - # && exit 1)