Skip to content

Commit 60c71c3

Browse files
Circleci project setup (#24)
* Add .circleci/config.yml * Create rude-eyes-check.md (#17) * Create rude-eyes-check.md Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Update .changeset/rude-eyes-check.md Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> --------- Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * Update config.yml (#23) Dargon789/fnm@472a8c5 Dargon789/foundry@fcfa587 Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> --------- Signed-off-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 6d05942 commit 60c71c3

File tree

2 files changed

+20
-12
lines changed

2 files changed

+20
-12
lines changed

.changeset/rude-eyes-check.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-solana-dapp": patch
3+
---
4+
5+
Added CircleCI configuration for continuous integration.

.circleci/config.yml

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,24 @@
1-
# Use the latest 2.1 version of CircleCI pipeline process engine.
2-
# See: https://circleci.com/docs/reference/configuration-reference
31
version: 2.1
42

5-
# Define a job to be invoked later in a workflow.
6-
# See: https://circleci.com/docs/guides/orchestrate/jobs-steps/#jobs-overview & https://circleci.com/docs/reference/configuration-reference/#jobs
3+
orbs:
4+
node: circleci/node@x.y
5+
76
jobs:
8-
say-hello:
9-
# Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub.
10-
# See: https://circleci.com/docs/guides/execution-managed/executor-intro/ & https://circleci.com/docs/reference/configuration-reference/#executor-job
7+
install-node-example:
118
docker:
12-
# Specify the version you desire here. Pin to a specific tag for reproducible builds.
13-
# See: https://circleci.com/developer/images/image/cimg/base
14-
- image: cimg/base:2024.01
9+
- image: cimg/base:stable
10+
steps:
11+
- checkout
12+
- node/install:
13+
install-yarn: true
14+
node-version: '16.13'
15+
- run: node --version
16+
workflows:
17+
test_my_app:
18+
jobs:
19+
- install-node-example
1520

1621
# Add steps to the job
17-
# See: https://circleci.com/docs/guides/orchestrate/jobs-steps/#steps-overview & https://circleci.com/docs/reference/configuration-reference/#steps
1822
steps:
1923
# Checkout the code as the first step.
2024
- checkout
@@ -23,7 +27,6 @@ jobs:
2327
command: "echo Hello, World!"
2428

2529
# Orchestrate jobs using workflows
26-
# See: https://circleci.com/docs/guides/orchestrate/workflows/ & https://circleci.com/docs/reference/configuration-reference/#workflows
2730
workflows:
2831
say-hello-workflow: # This is the name of the workflow, feel free to change it to better match your workflow.
2932
# Inside the workflow, you define the jobs you want to run.

0 commit comments

Comments
 (0)