frontend: Add dialog for Drain #4219
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: Build Frontend | |
on: | |
pull_request: | |
paths: | |
- 'frontend/**' | |
- 'Makefile' | |
- '.github/**' | |
- 'app/**' | |
- 'plugins/**' | |
push: | |
branches: | |
- main | |
paths: | |
- 'frontend/**' | |
- Makefile | |
- '.github/**' | |
- 'app/**' | |
- 'plugins/**' | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: | | |
make frontend-install-ci | |
- name: Run linter | |
run: | | |
make frontend-lint | |
- name: Run tests | |
run: | | |
make frontend-test | |
- name: Build Frontend | |
run: | | |
make frontend-build | |
- name: Test plugins | |
run: | | |
make plugins-test | |
- name: Build docs | |
run: | | |
make docs | |
- name: Build storybook | |
run: | | |
make frontend-build-storybook |