fix(ui): replace transparent background for Alert #243
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: check pull request | |
on: pull_request | |
env: | |
CI: true | |
PNPM_CACHE_FOLDER: .pnpm-store | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/install | |
- run: pnpm run lint | |
- run: pnpm run test | |
env: | |
NODE_OPTIONS: --max-old-space-size=8192 | |
test_visual: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/install | |
- run: pnpm run build-storybook | |
- run: docker pull yukinying/chrome-headless-browser-stable:116.0.5845.180 | |
- run: export NODE_OPTIONS=--openssl-legacy-provider && pnpm run test:visual | |
- name: Archive screenshots | |
if: ${{ failure() }} | |
uses: actions/upload-artifact@v1 | |
with: | |
name: loki-screenshots | |
path: packages/ui/.loki |