Skip to content

Add new permanence dao member #313

Add new permanence dao member

Add new permanence dao member #313

Workflow file for this run

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