Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

Bump flowbite-react from 0.7.8 to 0.10.1 (#5763) #519

Bump flowbite-react from 0.7.8 to 0.10.1 (#5763)

Bump flowbite-react from 0.7.8 to 0.10.1 (#5763) #519

Workflow file for this run

name: Turbo CI
on:
workflow_dispatch:
push:
branches: ["master"]
paths:
- "config/**"
- "npm/**"
- "package.json"
- "pnpm-lock.yaml"
pull_request:
types: [opened, synchronize]
paths:
- "config/**"
- "npm/**"
- "package.json"
- "pnpm-lock.yaml"
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
build:
# run only if repo is not a fork
if: github.repository == 'codinasion/codinasion'
name: Build and Test
runs-on: ubuntu-latest
# To use Turborepo Remote Caching, set the following environment variables for the job.
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build:packages
- name: Test
run: pnpm test