-
Notifications
You must be signed in to change notification settings - Fork 4
48 lines (42 loc) · 985 Bytes
/
backend-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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