From f4e39021621f91e9f79ed0d2290b42d3958bd557 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Consuelo=20S=C3=A1nchez?= <90105128+csbymt@users.noreply.github.com> Date: Mon, 20 Sep 2021 13:25:06 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index b361c63..7c6c5c0 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,5 @@ In this exercise you need to detect when PacMan touches either the left or right side of the WebPage and reverse its direction and also flip the image to face the in the direction moved. eg use different images. You should also use the JavaScript function setTimeout to automate the movement. +--------------- +prueba cambio localhost a 30001 From 49621a9321760c7eb532d75967ba58e82a90c300 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Consuelo=20S=C3=A1nchez?= <90105128+csbymt@users.noreply.github.com> Date: Fri, 24 Sep 2021 18:19:01 +0200 Subject: [PATCH 2/2] Add .circleci/config.yml --- .circleci/config.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..c3a29fe --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,24 @@ +# Use the latest 2.1 version of CircleCI pipeline process engine. +# See: https://circleci.com/docs/2.0/configuration-reference +version: 2.1 +# Define a job to be invoked later in a workflow. +# See: https://circleci.com/docs/2.0/configuration-reference/#jobs +jobs: + say-hello: + # Specify the execution environment. + # See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor + docker: + - image: cimg/base:stable + # Add steps to the job + # See: https://circleci.com/docs/2.0/configuration-reference/#steps + steps: + - checkout + - run: + name: "Say hello" + command: "echo Hello, World!" +# Invoke jobs via workflows +# See: https://circleci.com/docs/2.0/configuration-reference/#workflows +workflows: + say-hello-workflow: + jobs: + - say-hello