Skip to content

Commit 62d7658

Browse files
authored
Merge pull request #280 from wildan3105/doc/update-readme
doc: only refer to issues for feature tracker and bug report
2 parents a0b8b12 + 3c9c424 commit 62d7658

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
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:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ An example of environment variable is provided [here](.env.example)
5050
npm run dev # it will reload the application whenever there's scss file changes
5151
```
5252

53-
## Feature tracker:
54-
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)
53+
## Feature tracker / bug report:
54+
You can see the feature progress / bug report and pick up some issues in the [issues](https://github.com/wildan3105/github-langs/issues)
5555

5656
## Contributing
5757

0 commit comments

Comments
 (0)