Skip to content

Commit 1a2e8d9

Browse files
authored
Merge pull request OSSPhilippines#3 from WarenGonzaga/circleci-project-setup
Basic Circle CI Setup
2 parents ed556e0 + acafc4a commit 1a2e8d9

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.circleci/config.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 2.1
2+
orbs:
3+
node: circleci/[email protected]
4+
jobs:
5+
build-and-test:
6+
executor:
7+
name: node/default
8+
steps:
9+
- checkout
10+
- node/with-cache:
11+
steps:
12+
- run: npm install
13+
workflows:
14+
build-and-test:
15+
jobs:
16+
- build-and-test

0 commit comments

Comments
 (0)