docs: copy: Include our switch to PlonK, and add information about op… #495
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: Prettier | |
on: [push] | |
jobs: | |
prettier: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install yarn (renegade.fi) | |
uses: borales/actions-yarn@v4.2.0 | |
with: | |
cmd: install | |
dir: "renegade.fi" | |
- name: Prettier Check (renegade.fi) | |
uses: borales/actions-yarn@v4.2.0 | |
with: | |
cmd: format:check | |
dir: "renegade.fi" | |
# - name: Prettier Check (docs.renegade.fi) | |
# uses: borales/actions-yarn@v4.2.0 | |
# with: | |
# cmd: prettier | |
# dir: "docs.renegade.fi" | |
- name: Install yarn (trade.renegade.fi) | |
uses: borales/actions-yarn@v4.2.0 | |
with: | |
cmd: install | |
dir: "trade.renegade.fi" | |
- name: Prettier Check (trade.renegade.fi) | |
uses: borales/actions-yarn@v4.2.0 | |
with: | |
cmd: format:check | |
dir: "trade.renegade.fi" |