Skip to content

ci: add semantic release #5

ci: add semantic release

ci: add semantic release #5

Workflow file for this run

name: Main
on: [push]
jobs:
run-ci:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Run Type Check & Linters
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: npm ci
- name: Check types
run: npm run type-check
- name: Check linting
run: npm run lint
- name: Run tests
run: npm run test:ci
- name: Build storybook
run: npm run build-storybook
- name: Build package
run: npm run build