Changes to system built on pandacss #208
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 | |
on: | |
push: | |
branches: | |
- main | |
- beta | |
pull_request: | |
types: [opened, synchronize, reopened] | |
concurrency: | |
group: ${{ github.ref }}-${{ github.head_ref }} | |
cancel-in-progress: true | |
env: | |
NODE_VERSION: 16 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Commit | |
uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
run_install: | | |
- recursive: true | |
args: [--frozen-lockfile, --strict-peer-dependencies] | |
- args: [--global, prettier, typescript, rimraf, turbo] | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'pnpm' | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Run build | |
run: | | |
pnpm run ci | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build-output | |
path: dist | |
retention-days: 1 | |
release: | |
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/beta' | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout Commit | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }} | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
run_install: | | |
- recursive: true | |
args: [--frozen-lockfile, --strict-peer-dependencies] | |
- args: [--global, prettier, typescript, rimraf, turbo] | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'pnpm' | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install Dependencies | |
run: | | |
pnpm install | |
- name: Download build artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: build-output | |
path: dist | |
- name: Release | |
env: | |
GH_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }} | |
GIT_AUTHOR_NAME: commitd-bot | |
GIT_AUTHOR_EMAIL: 56758001+committed-bot@users.noreply.github.com | |
GIT_COMMITTER_NAME: commitd-bot | |
GIT_COMMITTER_EMAIL: 56758001+commitd-bot@users.noreply.github.com | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npx semantic-release | |
publish-storybook: | |
runs-on: ubuntu-latest | |
needs: release | |
steps: | |
- name: Checkout Commit | |
uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
run_install: | | |
- recursive: true | |
args: [--frozen-lockfile, --strict-peer-dependencies] | |
- args: [--global, prettier, typescript, rimraf, turbo] | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'pnpm' | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Install Dependencies | |
run: | | |
pnpm install | |
- name: Publish Storybook | |
if: github.ref == 'refs/heads/main' | |
run: pnpm run deploy-storybook -- --ci | |
env: | |
GH_TOKEN: commitd-bot:${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }} |