Skip to content

fixing typos & changeset #21

fixing typos & changeset

fixing typos & changeset #21

Workflow file for this run

name: CI
on:
pull_request:
branches: [main,staging]
types: [opened, reopened, labeled, synchronize]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: './.github/setup'
- name: Building
run: pnpm build
- name: Linting
run: pnpm lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: './.github/setup'
- name: Running tests
run: pnpm test:parallel