Skip to content

feat: update AddRuleModal style #223

feat: update AddRuleModal style

feat: update AddRuleModal style #223

Workflow file for this run

name: CI
on:
push:
branches:
- 'main'
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
build-app:
runs-on: macos-latest
# success or timeout
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
# install deps
- run: pnpm install --frozen-lockfile
# turbo cache
- uses: actions/cache@v4
with:
path: node_modules/.cache/turbo
key: turbo-cache-${{ runner.os }}
# build only
- run: pnpm build
# build .app file
# - run: pnpm dist:pack