chore(deps): update dependency eslint-plugin-react to v7.37.2 #221
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Frontend CI | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'packages/web/**' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'packages/web/**' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-18.04 | |
defaults: | |
run: | |
shell: bash | |
working-directory: packages/web | |
strategy: | |
matrix: | |
node-version: [12.x, 14.x, 16.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Lint | |
run: npx eslint --format=stylish . | |
- name: Format | |
run: npx prettier --check . | |
- name: Build | |
run: yarn build |