v 0.0.10 #276
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: Test and lint | |
on: [push] | |
jobs: | |
test-and-lint-package: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/[email protected] | |
- name: Install 🔧 | |
run: yarn | |
working-directory: ./packages/prong-editor | |
- name: Test 🔬 | |
run: yarn test | |
working-directory: ./packages/prong-editor | |
- name: Lint 🧵 | |
run: yarn lint | |
working-directory: ./packages/prong-editor | |
lint-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/[email protected] | |
- name: Install 🔧 | |
run: yarn | |
working-directory: ./sites/docs | |
- name: Lint 🧵 | |
run: yarn lint | |
working-directory: ./sites/docs |