Skip to content

Commit 65ff63c

Browse files
committed
merged dev need to refactor diff
2 parents c511636 + 4734e25 commit 65ff63c

24 files changed

+885
-411
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/src/extension/build/

Dockerfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
FROM node:10.16.2
2+
WORKDIR /usr/src/app
3+
COPY package*.json ./
4+
RUN npm i

docker-compose.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: '3'
2+
services:
3+
test:
4+
image: reacttt/test-lint
5+
container_name: reacttt-test-lint
6+
volumes:
7+
- .:/usr/src/app
8+
- node_modules:/usr/src/app/node_modules
9+
command: bash -c "npm run lint && npm test"
10+
volumes:
11+
node_modules:

0 commit comments

Comments
 (0)