Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

feat: ci config for linting and typecheck #2

feat: ci config for linting and typecheck

feat: ci config for linting and typecheck #2

Workflow file for this run

name: Code quality - linting
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize]
jobs:
linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "yarn"
cache-dependency-path: frontend/yarn.lock
- run: cd frontend
- run: yarn install
- name: Linting
run: yarn lint:js
- name: Prettier
run: yarn format