chore: build before publish #21
This file contains 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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
- name: Install bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- name: Install packages | |
run: bun i | |
- name: Check code coverage | |
run: bun run coverage | |
bump_version: | |
# DO NOT RUN ON PR | |
if: github.event_name != 'pull_request' | |
needs: coverage | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
outputs: | |
current_tag: ${{ steps.current_tag.outputs.current_tag }} | |
previous_tag: ${{ steps.previous_tag.outputs.previous_tag }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Get previous tag | |
id: previous_tag | |
run: | | |
echo "previous_tag=$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT | |
- name: Bump package version | |
run: npx standard-version | |
- name: Get current tag | |
id: current_tag | |
run: | | |
echo "current_tag=$(git describe --tags --abbrev=0)" >> $GITHUB_OUTPUT | |
- name: Push changes | |
run: git push --follow-tags origin main | |
release: | |
# DO NOT RUN ON PR | |
if: github.event_name != 'pull_request' | |
needs: bump_version | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: latest | |
- name: Install packages | |
run: bun i | |
- name: Build library and CLI | |
run: bun run build | |
- name: Generate CHANGELOG for Github release | |
id: changelog | |
uses: requarks/changelog-action@v1 | |
with: | |
token: ${{ github.token }} | |
fromTag: ${{ needs.bump_version.outputs.current_tag }} | |
toTag: ${{ needs.bump_version.outputs.previous_tag }} | |
writeToFile: false | |
- name: Create Github release | |
uses: ncipollo/[email protected] | |
with: | |
allowUpdates: true | |
draft: false | |
makeLatest: true | |
tag: ${{ needs.bump_version.outputs.current_tag }} | |
name: ${{ needs.bump_version.outputs.current_tag }} | |
body: ${{ steps.changelog.outputs.changes }} | |
token: ${{ github.token }} | |
artifacts: '*.tgz' | |
- name: Publish to NPM | |
run: npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |