Skip to content

Fix dark theme dropdown colours #45

Fix dark theme dropdown colours

Fix dark theme dropdown colours #45

Workflow file for this run

name: Embeddable library
on:
push:
branches:
- main
- develop
pull_request:
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
library:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: lts/*
- run: npm ci
- run: npm run build
env:
EMBEDDED_PLAYGROUND: "y"
- name: Deploy
if: ${{ github.ref == 'refs/heads/main' }}
run: |
git config --global user.email "<>"
git config --global user.name "Automatic library publish"
git add -f dist/*
git commit -m "Publish library (${GITHUB_SHA})"
git push -f origin "${GITHUB_REF_NAME}:library"