feat: add an instruction on how to activate maidr plot #265
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 | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '21.4.0' | |
- name: Install dependencies | |
run: yarn install | |
- name: Format code | |
run: yarn format | |
- name: Lint code | |
run: yarn lint | |
- name: Build | |
run: yarn build | |
- name: Generate docs | |
run: yarn docs |