Skip to content

test: Corriger d'autres tests sous Windows. #9

test: Corriger d'autres tests sous Windows.

test: Corriger d'autres tests sous Windows. #9

Workflow file for this run

name: Release
on:
push:
branches: [main]
jobs:
release-please:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
id-token: write
steps:
- name: Run Release Please
uses: google-github-actions/release-please-action@v4
id: release
with:
release-type: node
- name: Checkout repository
uses: actions/checkout@v4
if: ${{ steps.release.outputs.release_created }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org
if: ${{ steps.release.outputs.release_created }}
- name: Install dependencies
run: npm ci
if: ${{ steps.release.outputs.release_created }}
- name: Publish in npm
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
if: ${{ steps.release.outputs.release_created }}