From 0e0f7d7f921d12eceb51ebf6ea5e2aa7c742773f Mon Sep 17 00:00:00 2001 From: Huei Tan Date: Wed, 22 Nov 2023 13:03:23 +0100 Subject: [PATCH] replace circleci with github action --- .circleci/config.yml | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index e92eb8f..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,43 +0,0 @@ -# Use the latest 2.1 version of CircleCI pipeline process engine. -# See: https://circleci.com/docs/2.0/configuration-reference -version: 2.1 - -orbs: - # The Node.js orb contains a set of prepackaged CircleCI configuration you can utilize - # Orbs reduce the amount of configuration required for common tasks. - # See the orb documentation here: https://circleci.com/developer/orbs/orb/circleci/node - node: circleci/node@4.1 - php: circleci/php@1.1.0 - - -jobs: - build: - # These next lines define a Docker executor: https://circleci.com/docs/2.0/executor-types/ - # You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub. - # A list of available CircleCI Docker Convenience Images are available here: https://circleci.com/developer/images/image/cimg/node - docker: - - image: cimg/php:8.0.11-node - # Then run your tests! - # CircleCI will report the results back to your VCS provider. - steps: - # Checkout the code as the first step. - - checkout - - node/install-packages - - php/install-composer: - install-version: 1.10.16 - - php/install-packages - - run: - name: Linter - command: | - npm run lint:js - npm run lint:css - composer run lint - -workflows: - # Below is the definition of your workflow. - # Inside the workflow, you provide the jobs you want to run, e.g this workflow runs the build-and-test job above. - # CircleCI will run this workflow on every commit. - # For more details on extending your workflow, see the configuration docs: https://circleci.com/docs/2.0/configuration-reference/#workflows - sample: - jobs: - - build