Skip to content

[59] Apply the extension's theme styles to the new New Chat layout #38

[59] Apply the extension's theme styles to the new New Chat layout

[59] Apply the extension's theme styles to the new New Chat layout #38

Workflow file for this run

name: Build and Package Extensions
on:
pull_request:
workflow_dispatch:
jobs:
build-zips:
runs-on: ubuntu-latest
steps:
- name: Get code
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Build and Package Extensions
run: npm run build:all
- name: Upload prod extension artifact (unzipped)
uses: actions/upload-artifact@v4
with:
name: extensions-prod
path: build/prod/*
- name: Upload release extension artifact (zipped)
uses: actions/upload-artifact@v4
with:
name: extensions-releases
path: build/releases/*
report:
needs: [build-zips]
if: failure()
runs-on: ubuntu-latest
steps:
- name: Report
run: |
echo "Something went wrong"
echo "${{ toJSON(github) }}"