This repository was archived by the owner on Mar 13, 2026. It is now read-only.
feat: add disclaimer (#57) #58
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
| on: | |
| push: | |
| branches: | |
| - master | |
| - beta | |
| - v[0-9]* | |
| - +([0-9])?(.{+([0-9]),x}).x | |
| env: | |
| NODE_ENV: ci | |
| name: Release | |
| jobs: | |
| tests: | |
| name: Tests | |
| uses: ./.github/workflows/tests.yml | |
| linters: | |
| name: Linters | |
| uses: ./.github/workflows/linters.yml | |
| release: | |
| name: Publish Release | |
| runs-on: ubuntu-latest | |
| needs: [tests, linters] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18.x | |
| - run: npm ci | |
| - run: npm run build | |
| - uses: codfish/semantic-release-action@v2 | |
| id: semantic | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - name: Output new release version | |
| if: steps.semantic.outputs.new-release-published == 'true' | |
| run: | | |
| echo "🎉New Release Published: ${{ steps.semantic.outputs.release-version }}" |