Skip to content

Add Prettier for file format within Eslint #1

Add Prettier for file format within Eslint

Add Prettier for file format within Eslint #1

Workflow file for this run

name: Build and Lint
on:
pull_request:
# The branches below must be a subset of the branches above
branches: [dev, rc]
push:
branches: [dev, rc]
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Build
run: npm run dev-build