Skip to content

Commit ce34b56

Browse files
authored
Merge branch 'master' into doc/add-badge
2 parents ab060d0 + 62d7658 commit ce34b56

File tree

8 files changed

+705
-1624
lines changed

8 files changed

+705
-1624
lines changed

.github/workflows/deploy.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,29 @@ on:
66
- master
77

88
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
node-version: [18.18.0]
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Use Node.js ${{ matrix.node-version }}
17+
uses: actions/setup-node@v3
18+
with:
19+
node-version: ${{ matrix.node-version }}
20+
cache: 'npm'
21+
- name: Clear npm cache
22+
run: npm cache clean --force
23+
- name: Installing dependencies
24+
run: npm ci
25+
- name: Running linter
26+
run: npm run lint
27+
- name: Running test
28+
run: npm run test
29+
env:
30+
CI: true
31+
932
deploy:
1033
runs-on: ubuntu-latest
1134
env:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
node-version: [18.x]
17+
node-version: [18.18.0]
1818

1919
steps:
2020
- uses: actions/checkout@v3

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
18.18.0

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,11 @@ So people can see the stats of programming language being used in their reposito
2727
## Running locally
2828

2929
### Supported environment:
30-
* Prerequisite: Node >= v18.0.0 and NPM >= 9.5.0
30+
* Prerequisite:
31+
```bash
32+
Node >= v18.18.0
33+
NPM >= 9.5.0
34+
```
3135

3236
* [Generate access token (classic)](https://github.com/settings/tokens/new) with `repo` scope to ensure you don't get rate limited API call.
3337

@@ -47,8 +51,8 @@ An example of environment variable is provided [here](.env.example)
4751
npm run dev # it will reload the application whenever there's scss file changes
4852
```
4953

50-
## Feature tracker:
51-
You can see the feature progress and pick up some issues in the [issues](https://github.com/wildan3105/github-langs/issues) or [projects](https://github.com/wildan3105/github-langs/projects) or [milestones](https://github.com/wildan3105/github-langs/milestones)
54+
## Feature tracker / bug report:
55+
You can see the feature progress / bug report and pick up some issues in the [issues](https://github.com/wildan3105/github-langs/issues)
5256

5357
## Contributing
5458

0 commit comments

Comments
 (0)