Skip to content

Add prettier and fix format #2

Add prettier and fix format

Add prettier and fix format #2

Workflow file for this run

name: CI
on:
push:
pull_request:
branches:
- main
paths:
- 'frontend/**'
jobs:
test:
name: Check the source code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install packages
run: npm ci
- name: Prettier
run: npm run prettier
- name: Lint
run: npm run lint