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: |