Skip to content
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
3 changes: 2 additions & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ permissions:
contents: write

jobs:
dependabot-auto-merge:
auto-merge:
name: Auto-Merge
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/snyk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ permissions: write-all

jobs:
snyk:
name: "Snyk"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ permissions:

jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- name: Analyze
- name: Analyze
uses: SonarSource/sonarcloud-github-action@v1.6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
with:
args:
args:
-Dsonar.projectKey=chiefmikey_gitlang
-Dsonar.organization=chiefmikey
1 change: 1 addition & 0 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:

jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: write
Expand Down
10 changes: 2 additions & 8 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,6 @@ npm install

#### Development

```sh
npm run build
```

##### + Watch

```sh
npm run dev
```
Expand All @@ -43,13 +37,13 @@ npm run prod
### Start Server

```sh
npm run server
npm run start:server
```

### Start Client

```sh
npm run client
npm run start:client
```

The client will be available on local port `8080`.
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@
"description": "View language usage per repo or total by username",
"main": "app.js",
"scripts": {
"build": "NODE_ENV=development webpack --mode development",
"dev": "NODE_ENV=development webpack --mode development -w",
"prod": "NODE_ENV=production webpack --mode production",
"client": "nodemon client.ts",
"server": "nodemon server.ts"
"start:client": "nodemon client.ts",
"start:server": "nodemon server.ts"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.154.0",
Expand Down