Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
gimenete committed May 16, 2022
1 parent b324922 commit d3e995f
Show file tree
Hide file tree
Showing 20 changed files with 81 additions and 530 deletions.
9 changes: 9 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'import'],
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
rules: {
'@typescript-eslint/ban-ts-comment': 'off'
}
};
15 changes: 12 additions & 3 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ jobs:
[Pull request has been updated, please wait for latest changes to be pushed to npm...]
- name: Install dependencies
run: npm install
run: |
npm install
cd cli
npm install
- name: Compile
run: npm run build
Expand Down Expand Up @@ -133,7 +136,10 @@ jobs:
cache: 'npm'

- name: Install dependencies
run: npm install
run: |
npm install
cd cli
npm install
- name: Compile
run: npm run build
Expand All @@ -142,7 +148,10 @@ jobs:
run: npm run lint

- name: Test
run: npm test
run: |
npm test
cd cli
npm test
env:
XATA_DATABASE_URL: ${{ secrets.INTEGRATION_TEST_DATABASE_URL }}
XATA_API_KEY: ${{ secrets.INTEGRATION_TEST_API_KEY }}
Expand Down
30 changes: 0 additions & 30 deletions cli/.circleci/config.yml

This file was deleted.

11 changes: 0 additions & 11 deletions cli/.editorconfig

This file was deleted.

6 changes: 0 additions & 6 deletions cli/.eslintrc
Original file line number Diff line number Diff line change
@@ -1,6 +0,0 @@
{
"extends": [
"oclif",
"oclif-typescript"
]
}
16 changes: 0 additions & 16 deletions cli/.github/dependabot.yml

This file was deleted.

21 changes: 0 additions & 21 deletions cli/LICENSE

This file was deleted.

0 comments on commit d3e995f

Please sign in to comment.