Skip to content

feat: add rupture conventionnelle tool (#233) #387

feat: add rupture conventionnelle tool (#233)

feat: add rupture conventionnelle tool (#233) #387

Workflow file for this run

name: Release
on:
push:
branches: [master, alpha]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.SOCIALGROOVYBOT_BOTO_PAT }}
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 20.3.1
cache: "yarn"
- run: yarn --frozen-lockfile
- run: yarn build:lib
- run: yarn test --coverage
env:
CDTN_API_URL: https://code-du-travail-numerique-dev.dev.fabrique.social.gouv.fr
ELASTICSEARCH_URL: ${{ secrets.ELASTIC_URL }}
API_KEY: ${{ secrets.ELASTIC_API_KEY }}
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v2
with:
semantic_version: 17
extra_plugins: |
@semantic-release/[email protected]
@semantic-release/[email protected]
@semantic-release/[email protected]
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_AUTHOR_EMAIL: ${{ secrets.SOCIALGROOVYBOT_EMAIL }}
GIT_AUTHOR_NAME: ${{ secrets.SOCIALGROOVYBOT_NAME }}
GIT_COMMITTER_EMAIL: ${{ secrets.SOCIALGROOVYBOT_EMAIL }}
GIT_COMMITTER_NAME: ${{ secrets.SOCIALGROOVYBOT_NAME }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.SOCIALGROOVYBOT_NPM_TOKEN }}