Add new permanence dao member #313
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: backend ci | |
on: | |
push: | |
branches: | |
- main | |
- "release-*" | |
paths: | |
- "backend/**" | |
pull_request: | |
branches: | |
- main | |
- "release-*" | |
paths: | |
- "backend/**" | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node LTS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
cache: yarn | |
cache-dependency-path: | | |
backend/yarn.lock | |
- name: install | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: install # will run `yarn install` command | |
dir: backend | |
- name: server lint | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: workspace @collaboration/voting-server lint | |
dir: backend | |
- name: node api lint | |
uses: borales/actions-yarn@v4 | |
with: | |
cmd: workspace @collaboration/node-api lint | |
dir: backend |