feat(limiter): storybook stories for limiter #28
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: Build and Release | |
on: | |
push: | |
branches: | |
- main | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
env: | |
CI: true | |
NODE_ENV: "develop" | |
PNPM_CACHE_FOLDER: .pnpm-store | |
jobs: | |
build: | |
name: Build and Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' | |
- name: Install pnpm package manager | |
run: npm i pnpm@latest -g | |
- name: Setup CI Git User | |
run: | | |
git config --global user.name "miguelramos" | |
git config --global user.email "miguel.ramos@websublime.dev" | |
cat << EOF > "$HOME/.npmrc" | |
//npm.pkg.github.com/:_authToken=$GITHUB_TOKEN | |
@websublime:registry=https://npm.pkg.github.com | |
EOF | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
- name: Setup pnpm config | |
run: pnpm config set store-dir $PNPM_CACHE_FOLDER | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build | |
run: pnpm build | |
- name: Create Release | |
uses: changesets/action@v1.4.5 | |
with: | |
setupGitUser: false | |
publish: pnpm release | |
title: "Production Release" | |
commit: "chore(release): artifact published to github packages" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.GH_TOKEN }} |