feat(avatar): add status indicator support in avatar #8583
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: Pull request | |
on: pull_request | |
jobs: | |
lint_test_build: | |
name: lint, test and build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '20.x' | |
- name: npm install | |
run: npm ci | |
- name: lint | |
run: npm run lint:check | |
- name: test | |
run: npm run test | |
- name: build | |
run: npm run build |