Skip to content

Commit

Permalink
checkint circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
vaguue committed Jul 13, 2024
1 parent 7443cc8 commit 2174c6d
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
version: 2.1

executors:
node-executor:
docker:
- image: circleci/node:latest

jobs:
install:
executor: node-executor
steps:
- checkout
- run:
name: Install Dependencies
command: npm install

build:
executor: node-executor
steps:
- checkout
- run:
name: Build Project
command: npm run build

test:
executor: node-executor
steps:
- checkout
- run:
name: Run Tests
command: npm test

workflows:
version: 2
build_and_test:
jobs:
- install
- build:
requires:
- install
- test:
requires:
- build

0 comments on commit 2174c6d

Please sign in to comment.