From 14303d6b28fc7434fbf457e455282cbc34ec8039 Mon Sep 17 00:00:00 2001 From: Aadil Ayub Date: Fri, 19 Jul 2024 17:07:45 +0500 Subject: [PATCH] delete github actions --- .github/workflows/deploy.yml | 25 ------------------------- .github/workflows/js-lint.yml | 12 ------------ .github/workflows/main.yml | 19 ------------------- 3 files changed, 56 deletions(-) delete mode 100644 .github/workflows/deploy.yml delete mode 100644 .github/workflows/js-lint.yml delete mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 4750398..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: GitHub Pages Deploy - -on: - push: - branches: - - main - -jobs: - deploy: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Set up Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: '3.0' - bundler-cache: true - - name: Build site - run: bundle exec rake build - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./_site - cname: digitalgarden.hypha.coop \ No newline at end of file diff --git a/.github/workflows/js-lint.yml b/.github/workflows/js-lint.yml deleted file mode 100644 index 8663fab..0000000 --- a/.github/workflows/js-lint.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: JS Lint -on: [push, pull_request] -jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v2 - with: - node-version: '14.16.0' - - run: npm install standard - - run: npx standard \ No newline at end of file diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 1695126..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: HTMLProofer -on: [push, pull_request] -jobs: - test: - runs-on: ubuntu-latest - strategy: - matrix: - ruby-version: ['2.7', '3.0'] - steps: - - uses: actions/checkout@v2 - - name: Set up Ruby - uses: ruby/setup-ruby@v1 - with: - ruby-version: ${{ matrix.ruby-version }} - bundler-cache: true - - name: Install Curl - run: sudo apt install libcurl4-openssl-dev - - name: Run tests - run: bundle exec rake \ No newline at end of file