-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pkg.json test
script
#77
base: master
Are you sure you want to change the base?
Conversation
need to change the github action? |
cc @louisinger |
UPDATE
|
@@ -37,7 +37,8 @@ | |||
"nobuild:unit": "npm run mocha:ts -- --timeout 60000 'test/*.ts'", | |||
"prettier": "prettier 'ts_src/**/*.ts' 'test/**/*.ts' --ignore-path ./.prettierignore", | |||
"prettierjs": "prettier 'src/**/*.js' --ignore-path ./.prettierignore", | |||
"test": "npm run build && npm run format:ci && npm run lint && npm run nobuild:coverage", | |||
"checks": "npm run build && npm run format:ci && npm run lint && npm run nobuild:coverage", | |||
"test": "npm run build && npm run nobuild:unit && npm run nobuild:integration", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"test": "npm run build && npm run nobuild:unit && npm run nobuild:integration", | |
"test": "npm run nobuild:unit && npm run nobuild:integration", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@louisinger we should use these commands in the gh action.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@louisinger we should use these commands in the gh action.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
better to keep several steps in the GH actions, test
is for local testing only @altafan
test
script is now renamed astest:ci
(check formatting, prettier, lint etc...)test
lets to launch unit and integration testsit closes #60
@tiero @altafan please review