From ce78013646d5abd559299506cbbbb678a069b301 Mon Sep 17 00:00:00 2001 From: Adam Szatyin Date: Mon, 11 Oct 2021 13:00:50 +0200 Subject: [PATCH] feat: add ESLint and Prettier to CI pipeline (#329) --- .github/workflows/build.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index c59502333d..d38abc6c2e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -37,6 +37,14 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v2 + - name: Install dependencies + run: cd frontend && yarn install + - name: Run Prettier + run: cd frontend && npm run prettify + continue-on-error: true + - name: Run ESLint + run: cd frontend && npm run lint + continue-on-error: true - name: Build frontend docker image shell: bash run: |