Bugfixes and better type namespacing #29
Workflow file for this run
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 PR | |
on: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Bun | |
uses: oven-sh/setup-bun@v2 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- name: Run CI | |
run: bun run ci | |
- id: current-version | |
name: Get current version | |
run: echo "CURRENT_VERSION=$(npm pkg get version | tr -d '"')" >> $GITHUB_OUTPUT | |
- id: sha | |
name: Get commit sha | |
run: echo "SHA=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
- name: Set package version with commit sha | |
# https://github.com/oven-sh/bun/issues/1976 | |
run: bunx npm@latest version --no-git-tag-version $CURRENT_VERSION-$SHA | |
env: | |
SHA: ${{ steps.sha.outputs.SHA }} | |
CURRENT_VERSION: ${{ steps.current-version.outputs.CURRENT_VERSION }} | |
- name: Publish to NPM package registry | |
# https://github.com/oven-sh/bun/issues/1976 | |
run: | | |
echo "@secretkeylabs:registry=https://registry.npmjs.org/" > .npmrc | |
echo "//registry.npmjs.org/:_authToken=$AUTH_TOKEN" >> .npmrc | |
bunx npm@latest publish --access=public | |
env: | |
AUTH_TOKEN: ${{ secrets.NPM_PACKAGE_REGISTRY_TOKEN }} | |
- name: Publish to GitHub package registry | |
# https://github.com/oven-sh/bun/issues/1976 | |
run: | | |
echo "@secretkeylabs:registry=https://npm.pkg.github.com/" > .npmrc | |
echo "//npm.pkg.github.com/:_authToken=$AUTH_TOKEN" >> .npmrc | |
bunx npm@latest publish --access=public | |
env: | |
AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |