fix(deps): update dependency commander to v14 #16
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: | ||
| push: | ||
| tags: | ||
| - 'v*' | ||
| jobs: | ||
| release: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v3 | ||
| with: | ||
| fetch-depth: 0 | ||
| - name: Set node | ||
| uses: actions/setup-node@v3 | ||
| with: | ||
| node-version: [18.x, 20.x] | ||
| cache: npm | ||
| - run: npx changelogithub | ||
| continue-on-error: true | ||
| env: | ||
| GITHUB_TOKEN: ${{secrets.GH_TOKEN}} | ||
| - name: Install | ||
| run: npm install | ||
| - name: Build | ||
| run: npm run build | ||
| - name: Test | ||
| run: npm run test | ||
| - name: Config npm | ||
| run: echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc | ||
| env: | ||
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
| - name: Publish to npm | ||
| run: npm publish --access public --no-git-checks | ||