diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 1c6f7bd..e05c599 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -13,20 +13,27 @@ jobs: strategy: matrix: - node-version: [16.x, 18.x] + node-version: [16.x, 18.x, 20.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - run: yarn - - run: yarn lint - - run: yarn build-minicog - - run: yarn test - - run: yarn build - - run: yarn transpile + - name: Install dependencies + run: yarn + - name: Lint the codebase + run: yarn lint + - name: Build minicog + run: yarn build-minicog + - name: Test our code + run: yarn test + - name: Build + run: yarn build + - name: Transpile code + run: yarn transpile + scan: name: gitleaks diff --git a/package.json b/package.json index 827a434..2c19c69 100644 --- a/package.json +++ b/package.json @@ -4,6 +4,12 @@ "description": "Validateur de référence pour le format BAL", "repository": "https://github.com/BaseAdresseNationale/validateur-bal", "author": "Équipe Adresse ", + "contributors": [ + "Jérôme Desboeufs ", + "Théophile Merlière ", + "Guillaume Fay ", + "Fabien Tafforeau " + ], "license": "MIT", "private": false, "publishConfig": {