Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 2ca2a4d

Browse files
Created .circleci/config.yml
1 parent 25cfe09 commit 2ca2a4d

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

‎.circleci/config.yml‎

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
version: 2.1
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/node:12
6+
steps:
7+
- checkout
8+
- run:
9+
name: Update npm
10+
command: 'sudo npm install -g npm@latest'
11+
- restore_cache:
12+
key: dependency-cache-{{ checksum "package-lock.json" }}
13+
- run:
14+
name: Install Dependencies
15+
command: npm install
16+
- save_cache:
17+
key: dependency-cache-{{ checksum "package-lock.json" }}
18+
paths:
19+
- ./node_modules
20+
- run:
21+
name: Build Project
22+
command: npm run build

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /