2021-10-27 18:16:13 +02:00
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
- develop
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: true
|
2022-04-03 08:21:46 +02:00
|
|
|
- uses: actions/setup-node@v3
|
2021-10-27 18:16:13 +02:00
|
|
|
with:
|
2022-04-02 15:52:26 +02:00
|
|
|
node-version: 16.x
|
2022-04-03 08:21:46 +02:00
|
|
|
cache: 'yarn'
|
|
|
|
cache-dependency-path: |
|
|
|
|
src/packages/backend/yarn.lock
|
|
|
|
src/packages/client/yarn.lock
|
2021-10-27 18:16:13 +02:00
|
|
|
- run: yarn install
|
|
|
|
- run: yarn lint
|