Skip to content

Commit

Permalink
CircleCI Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleyshaw committed Oct 10, 2024
1 parent e362595 commit d5c5746
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
version: 2.1
orbs:
php: circleci/php@1
evals: circleci/evals@1.0
jobs:
test-php:
docker:
- image: cimg/php:8.2.7-node
steps:
- checkout
- php/install-packages
- run:
name: run tests
command: ./vendor/bin/phpunit
deploy:
docker:
- image: cimg/base:stable
steps:
- run:
name: deploy
command: "#e.g. ./deploy.sh"
- run:
name: found github actions config
command: ":"
eval-default-node-npm:
docker:
- image: cimg/node:18.16
steps:
- checkout
- run:
name: install dependencies
command: |
npm install
- evals/eval:
circle_pipeline_id: << pipeline.id >>
cmd: npm run evals
workflows:
build-and-test:
jobs:
- test-php:
context:
- OpenAI-circleci-lightspeedwp
evals:
jobs:
- eval-default-node-npm:
context:
- OpenAI-circleci-lightspeedwp

0 comments on commit d5c5746

Please sign in to comment.