-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c199b88
commit dd03036
Showing
5 changed files
with
84 additions
and
2 deletions.
There are no files selected for viewing
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 @@ | ||
github: maelgangloff |
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,32 @@ | ||
--- | ||
name: Rapport de bug | ||
about: Créer un rapport de bug pour aider à améliorer le projet | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Décrivez le problème** | ||
Une description claire et concise est attendue. | ||
|
||
|
||
**Pour reproduire le problème:** | ||
Le code que j'ai testé est: | ||
```js | ||
... | ||
``` | ||
J'obtiens cette erreur: | ||
``` | ||
Erreur | ||
``` | ||
|
||
**Résultat attendu** | ||
Une description claire et concise du résultat attendu est requis. | ||
|
||
**Screenshots** | ||
Ajoutez des captures d'écran si c'est nécessaire | ||
|
||
|
||
**Contexte additionnel** | ||
Version de la librairie: |
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,20 @@ | ||
# Description de la demande de fusion | ||
|
||
|
||
## Type de changement | ||
|
||
- [ ] Bug fix (non-breaking change which fixes an issue) | ||
- [ ] New feature (non-breaking change which adds functionality) | ||
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected) | ||
- [ ] This change requires a documentation update | ||
|
||
## Checklist: | ||
- [ ] Mon code ne met pas en danger les données personnelles des utilisateurs | ||
- [ ] Les noms des commits suivent la convention [Conventional Commits](https://www.conventionalcommits.org/fr/v1.0.0/) | ||
- [ ] J'ai vérifié l'entièreté du code avant de le soumettre | ||
- [ ] J'ai mis à jour la documentation en lien avec mes commits | ||
- [ ] Mon code ne génère pas d'erreurs | ||
|
||
### Note | ||
Avant de fusionner cette PR, elle devra recevoir l'approbation d'au moins une des personnes suivantes : | ||
- [@maelgangloff](https://github.com/maelgangloff) |
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,30 @@ | ||
name: Publier sur npmjs.com | ||
on: | ||
release: | ||
types: [published] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '22.x' | ||
registry-url: 'https://registry.npmjs.org' | ||
|
||
- name: Install Dependencies | ||
run: yarn install | ||
|
||
- name: Lint | ||
run: npx eslint src/ --ext .ts | ||
|
||
- name: Build | ||
run: npx tsc | ||
|
||
- name: Publish | ||
run: npm publish --provenance --access public | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
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