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

Update README.md

Update README.md #127

name: Static code analysis
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: 18.x
- run: yarn
- run: yarn run prettier:check
env:
CI: true
- run: yarn run lint
env:
CI: true
- run: yarn run stylelint:check
env:
CI: true