Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove old Travis and EB related files #8

Merged
merged 6 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Lint

on:
push:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- run: npm ci
- run: npm run lint
- run: npm run format:check
- run: npm run deps:check
22 changes: 22 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Test

on:
pull_request:
branches: [ $default-branch ]
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- run: npm ci
- run: npm run test
- run: npm run test:e2e
env:
BASE_NODE_URL: ${{ vars.BASE_NODE_URL }}
MNEMONIC: ${{ vars.MNEMONIC }}
- run: npm run build
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
.env*.local
!site/.env
.eslintcache
.idea
.nyc_output
.vscode
node_modules
packages/**/coverage
packages/**/dataset*.json
Expand Down
35 changes: 0 additions & 35 deletions .travis.yml

This file was deleted.

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@
"license": "MIT",
"author": "Gabriel Montes",
"scripts": {
"build": "npm run lerna:run build",
"deps:check": "npm run lerna:run deps:check",
"format:check": "prettier --check .",
"deps:check": "lerna run --stream --concurrency 1 deps:check",
"lerna:run": "lerna run --stream --concurrency 1",
"lint": "eslint --cache --quiet .",
"postinstall": "lerna bootstrap",
"test": "lerna run --stream --concurrency 1 test",
"test:e2e": "npx lerna run --stream --concurrency 1 test:e2e"
"test": "npm run lerna:run test",
"test:e2e": "npm run lerna:run test:e2e"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
Expand Down
145 changes: 0 additions & 145 deletions scripts/1-site

This file was deleted.

31 changes: 0 additions & 31 deletions site/.ebextensions/alb-http-to-https-redirection-full.config

This file was deleted.

7 changes: 0 additions & 7 deletions site/.ebextensions/managed-platform-update.config

This file was deleted.

10 changes: 0 additions & 10 deletions site/Dockerfile

This file was deleted.