From a7a0c55f7ab70b1cc5373afd846fc4bcc463ef8c Mon Sep 17 00:00:00 2001 From: Aaron Riedel Date: Wed, 7 Aug 2024 21:12:20 +0200 Subject: [PATCH] remove github folder --- .github/FUNDING.yml | 12 ----- .github/workflows/main.yml | 106 ------------------------------------- 2 files changed, 118 deletions(-) delete mode 100644 .github/FUNDING.yml delete mode 100644 .github/workflows/main.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index d5f571c..0000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,12 +0,0 @@ -# These are supported funding model platforms - -github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] -patreon: # Replace with a single Patreon username -open_collective: # Replace with a single Open Collective username -ko_fi: # Replace with a single Ko-fi username -tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel -community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry -liberapay: # Replace with a single Liberapay username -issuehunt: # Replace with a single IssueHunt username -otechie: # Replace with a single Otechie username -custom: [ "https://www.buymeacoffee.com/phntxx" ] diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 88a034c..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,106 +0,0 @@ -name: Tests and push apps - -on: - push: - branches: [ master ] - pull_request: - branches: [ master ] - -jobs: - - style: - runs-on: ubuntu-latest - steps: - - - name: Checkout repository - uses: actions/checkout@master - - - name: Setup node.js - uses: actions/setup-node@v4 - with: - node-version: '16' - - - name: Install dependencies - uses: borales/actions-yarn@v5.0.0 - with: - cmd: install - - - name: Check code formatting - uses: borales/actions-yarn@v5.0.0 - with: - cmd: prettier --check - - - name: Check code linting - uses: borales/actions-yarn@v5.0.0 - with: - cmd: lint - - dashboard: - runs-on: ubuntu-latest - steps: - - - name: Checkout repository - uses: actions/checkout@master - - - name: Setup node.js - uses: actions/setup-node@v4 - with: - node-version: '16' - - - name: Install dependencies - uses: borales/actions-yarn@v5.0.0 - with: - cmd: install - - - name: Check code typing - uses: borales/actions-yarn@v5.0.0 - with: - cmd: typecheck - - - name: Run unit tests - uses: borales/actions-yarn@v5.0.0 - with: - cmd: test --coverage - - - name: Codecov - uses: codecov/codecov-action@v4 - with: - token: ${{ secrets.CODECOV_TOKEN }} - fail_ci_if_error: true - verbose: true - - build: - runs-on: ubuntu-latest - needs: [style, dashboard] - steps: - - - name: Checkout repository - uses: actions/checkout@master - - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Login to DockerHub - uses: docker/login-action@v3 - with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} - - - name: Login to GitHub Container Registry - uses: docker/login-action@v3 - with: - registry: ghcr.io - username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} - - - name: Build and push - uses: docker/build-push-action@v6 - with: - push: true - platforms: linux/amd64,linux/arm64/v8,linux/arm/v7 - tags: | - phntxx/dashboard:latest - ghcr.io/phntxx/dashboard:latest