Skip to content

style(chat): expand ChatInput on focus #84

style(chat): expand ChatInput on focus

style(chat): expand ChatInput on focus #84

Workflow file for this run

name: Build - PR
on:
pull_request:
permissions:
contents: read
jobs:
build:
if: github.event.pull_request.draft == false
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: ['lts/*', 'latest']
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.node-version }}
steps:
- uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
# - name: Test
# run: |
# if [ -f "package.json" ] && grep -q '"test"' package.json; then
# npm test
# else
# echo "No test script defined, skipping tests."
# fi
- name: Build
run: npm run build:prod