Skip to content

feat(TS-6995): adição do componente tooltip e popover usando a lib fl… #64

feat(TS-6995): adição do componente tooltip e popover usando a lib fl…

feat(TS-6995): adição do componente tooltip e popover usando a lib fl… #64

Workflow file for this run

name: checks
on:
pull_request:
types: [opened, synchronize]
jobs:
run:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup node
uses: actions/setup-node@v4
with:
node-version: '18'
- uses: pnpm/action-setup@v3
name: install pnpm
id: pnpm-install
with:
version: 8
run_install: false
- name: get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: install and prepare
run: pnpm i
- name: lint
run: pnpm lint:fix
- name: build docs
run: pnpm build:storybook