Bump eslint from 8.57.0 to 9.13.0 #211
Workflow file for this run
This file contains hidden or 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
| name: release | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| semver: | |
| description: The semver to use | |
| required: true | |
| default: patch | |
| type: choice | |
| options: | |
| - patch | |
| - minor | |
| - major | |
| pull_request: | |
| types: [closed] | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setting composite action runtime | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .nvmrc | |
| - uses: nearform-actions/optic-release-automation-action@v4 | |
| with: | |
| semver: ${{ github.event.inputs.semver }} | |
| sync-semver-tags: 'true' | |
| build-command: | | |
| npm ci | |
| npm run build |