Skip to content
This repository has been archived by the owner on Dec 16, 2023. It is now read-only.

Update README.md

Update README.md #95

Workflow file for this run

name: Code analysis checks
on: [push]
jobs:
codeanalysis:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Main checkout
uses: actions/checkout@v3
# node setup
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
# node install
- name: Install dependencies
run: yarn
# ESlint
- name: ESlint
run: yarn eslint
# Prettier
- name: Prettier
run: yarn prettier
# Stylelint
- name: Stylelint
run: yarn stylelint