Skip to content

feat(tailwind): ✨ add tailwind config module #497

feat(tailwind): ✨ add tailwind config module

feat(tailwind): ✨ add tailwind config module #497

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
actions: read
contents: read
jobs:
main:
name: CI
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 9.0.0
- name: Install Node
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Set SHAs action
uses: nrwl/nx-set-shas@v4
- name: Print Environment Info
run: pnpm nx report
shell: bash
- name: Build packages
run: pnpm build:packages
shell: bash
- name: Lint check
run: pnpm exec nx-cloud record -- pnpm lint:check
env:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}