Skip to content

Commit

Permalink
Merge pull request #1 from WezomCompany/develop
Browse files Browse the repository at this point in the history
Refactors to the monorepo
  • Loading branch information
OlehDutchenko authored Feb 13, 2021
2 parents 4f50bb4 + ce2af1c commit c20c824
Show file tree
Hide file tree
Showing 140 changed files with 24,258 additions and 9,299 deletions.
11 changes: 11 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
root = true

[{package.json, package-lock.json, lerna.json}]
indent_style = space
indent_size = 2

[*.md]
trim_trailing_whitespace = false

[*.{yml,yaml}]
indent_size = 2
27 changes: 0 additions & 27 deletions .eslintrc.js

This file was deleted.

12 changes: 5 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,19 @@
name: Test and Build
name: All packages build

on: [push, pull_request]
on: [pull_request]

jobs:
test:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
node-version: [15.x]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
- name: Test
run: npm test
- name: Build
run: npm run build
run: npm run lerna:build
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: All packages test

on: [pull_request]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [15.x]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
- name: Test
run: npm run lerna:test
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
*.tgz
.cache
.idea
dist
.refs
coverage
node_modules
dist
6 changes: 6 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
lerna.json
package.json
package-lock.json
.cache
coverage
dist
Loading

0 comments on commit c20c824

Please sign in to comment.