Skip to content

chore(deps-dev): Bump @storybook/react from 6.5.16 to 7.5.2 #2464

chore(deps-dev): Bump @storybook/react from 6.5.16 to 7.5.2

chore(deps-dev): Bump @storybook/react from 6.5.16 to 7.5.2 #2464

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
build-and-test:
name: Build, lint, and test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.19.1
cache: "npm"
- name: Install Dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Test
run: npm run test -- --ci --coverage
- name: Codecov
run: npx codecov
- name: Build
run: npm run build
- name: Docs
run: npm run build-docs
- name: Upload build
if: github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v3
with:
name: dist
path: dist
release:
runs-on: ubuntu-latest
needs: build-and-test
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.19.1
cache: npm
- name: Download build
uses: actions/download-artifact@v3
with:
name: dist
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release