Skip to content

fix(table): update dateOptions type to Intl.DateTimeFormatOptions (#715) #1508

fix(table): update dateOptions type to Intl.DateTimeFormatOptions (#715)

fix(table): update dateOptions type to Intl.DateTimeFormatOptions (#715) #1508

Workflow file for this run

name: Main
on: [push, pull_request, workflow_dispatch]
permissions:
contents: write
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
token: ${{secrets.GITHUB_TOKEN}}
- name: Set up pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check types
run: pnpm type-check
- name: Fix linting
run: pnpm lint:fix
- name: Check linting
run: pnpm lint
- name: Run tests
run: pnpm test:ci
- name: Build storybook
run: pnpm build-storybook
- name: Build package
run: pnpm build