feat(chart): add venn diagram chart, delete unused graph #864
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: Quality | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build_components: | |
name: Install Dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v3 | |
- name: Set up node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '18.18' | |
- name: use cache | |
uses: actions/cache@v2 | |
with: | |
path: '**/node_modules' | |
key: ${{ runner.os }}-modules-${{ hashFiles('**/deps.lock') }} | |
- name: Install Components dependencies | |
run: | | |
cd packages/ui | |
npm install | |
- name: Install Components dependencies | |
run: | | |
cd packages/ui | |
npm install | |
npm run build | |
cd ../../storybook | |
npm install | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ArtiomTr/jest-coverage-report-action@v2 | |
id: coverage | |
with: | |
working-directory: packages/ui | |
test-script: npm run coverage:changed | |
output: report-markdown | |
- uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
header: PR Coverage | |
message: ${{ steps.coverage.outputs.report }} | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install modules | |
run: | | |
cd packages/ui | |
npm i | |
- name: Run tests | |
id: tests | |
run: | | |
cd packages/ui | |
echo " " >> results.log | |
echo "## Project Coverage and Test" >> results.log | |
echo "" >> results.log | |
echo "`npm run test:github 2>&1 | sed 's/=//g' | tail -n 11`" >> results.log | |
echo " " >> results.log | |
- uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
header: Project Coverage and Test | |
path: packages/ui/results.log |