Skip to content

Commit

Permalink
Update config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Aniket-Engg committed Jul 18, 2023
1 parent 2958f36 commit 0f6b28a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Expand Up @@ -5,7 +5,7 @@ version: 2.1
# Define a job to be invoked later in a workflow.
# See: https://circleci.com/docs/configuration-reference/#jobs
jobs:
say-hello:
compile:
# Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub.
# See: https://circleci.com/docs/configuration-reference/#executor-job
docker:
Expand All @@ -15,12 +15,12 @@ jobs:
steps:
- checkout
- run:
name: "Say hello"
command: "echo Hello, World!"
name: "Compile contracts"
command: "npm run compile"

# Orchestrate jobs using workflows
# See: https://circleci.com/docs/configuration-reference/#workflows
workflows:
say-hello-workflow:
compile-workflow:
jobs:
- say-hello
- compile

0 comments on commit 0f6b28a

Please sign in to comment.