Skip to content
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

fix: Workflows are now running #15

Merged
merged 15 commits into from
Feb 6, 2024
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Run npm test
env:
CI: true
run: |
npm ci
npm run build --if-present
npm test
npm test -- --watch=false
12 changes: 12 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Contributing
Your contributions are always welcome!

Guidelines
Add one link per Pull Request.
Make sure the PR title is in the format of [KEY]: [description]
Keep descriptions concise and short.
Add the section description if needed.
Search previous Pull Requests or Issues before making a new one, as yours may be a duplicate.
Check your spelling and grammar.
Remove any trailing whitespace.
Just a gentle reminder: Try not to submit your own project. Instead, wait for someone finds it useful and submits it for you.
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = function(config) {
require('karma-chrome-launcher'),
require('@angular-devkit/build-angular/plugins/karma')
],
browsers: ['ChromeHeadless'], // Utilisez Chrome en mode sans tête
browsers: ['ChromeHeadless'],
reporters: ['progress', 'kjhtml'],
port: 9876,
colors: true,
Expand Down
Loading