Skip to content

Commit

Permalink
feat(locales): add default error messages for all checks (#27)
Browse files Browse the repository at this point in the history
* feat(locales): add default error messages for all checks

* ci(coveralls): add coveralls to the test

* ci(lcov): generate lcov.info file for CI
  • Loading branch information
simonguo authored Mar 29, 2021
1 parent c972049 commit 03e21d7
Show file tree
Hide file tree
Showing 27 changed files with 1,408 additions and 277 deletions.
Empty file removed .coveralls.yml
Empty file.
23 changes: 15 additions & 8 deletions .github/workflows/nodejs-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,18 @@ jobs:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build --if-present
- run: npm test

- name: Coveralls GitHub Action
uses: coverallsapp/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}


3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,5 @@ lib
es

.vscode
yarn.lock
yarn.lock
.DS_Store
Loading

0 comments on commit 03e21d7

Please sign in to comment.