release channel changed to beta #4
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: [v2.0] | |
pull_request: | |
branches: [v2.0] | |
workflow_dispatch: | |
jobs: | |
cache-and-install: | |
name: Build, test and publish canary release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
registry-url: "https://registry.npmjs.org" | |
- uses: pnpm/action-setup@v2 | |
name: Install pnpm | |
with: | |
version: 8 | |
run_install: false | |
- uses: oven-sh/setup-bun@v1 | |
name: Install bun | |
with: | |
version: latest | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm install | |
- name: Check code style | |
run: pnpm run format:check | |
- name: Build and test | |
run: pnpm run build && pnpm run test | |
- name: Prepare git for tagging the release | |
run: | | |
git config --global user.name "Github Actions Bot" | |
git config --global user.email "username@users.noreply.github.com" | |
- name: Publish canary release to NPM repository | |
run: pnpm canary:publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |