-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add github action workflow for test runner * Set yarn version in package.json * Enable corepack in workflow * Remove pre push git hook * Set runner version to current lts * Fix duplicate name string
- Loading branch information
1 parent
ae737ff
commit 02e9349
Showing
7 changed files
with
9,575 additions
and
6,723 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Code checker | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
commit-checks: | ||
runs-on: ubuntu-24.04 | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '22' | ||
|
||
- name: Enable corepack for node package managers | ||
run: corepack enable | ||
|
||
- name: Install dependencies | ||
run: yarn install | ||
|
||
- name: Run linter | ||
run: yarn lint | ||
|
||
- name: Run tests | ||
env: | ||
CI: true | ||
run: yarn test:coverage --runInBand --forceExit --verbose | ||
|
||
- name: Run coveralls | ||
run: cat coverage/lcov.info | node_modules/coveralls/bin/coveralls.js | ||
|
||
- name: Check formatting | ||
run: yarn lint | ||
|
||
# Ensure no vulnerable dependencies (optional) | ||
- name: Audit dependencies | ||
run: yarn audit --level moderate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,7 @@ npm-debug.log* | |
yarn-debug.log* | ||
yarn-error.log* | ||
.vscode/ | ||
.yarn | ||
|
||
# logs | ||
logs | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,5 +97,6 @@ | |
"rimraf": "^3.0.1", | ||
"supertest": "^6.2.2", | ||
"ts-jest": "^27.1.3" | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
Oops, something went wrong.