Skip to content

Commit

Permalink
ci(deploy): add dummy CI config to prevent config not found errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomaash committed Feb 19, 2023
1 parent 87e02f2 commit b25f148
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions public/.circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2.1

executors:
node:
docker:
- image: circleci/node:17.2
resource_class: small
working_directory: ~/repo

jobs:
do_nothing:
executor: node

steps:
- run: print -- "Do nothing!"

workflows:
version: 2

build:
jobs:
- do_nothing:
filters:
branches:
only:
- only-execute-this-on-a-branch-that-will-hopefully-never-exist

0 comments on commit b25f148

Please sign in to comment.