Skip to content

fix: webclient styles #17

fix: webclient styles

fix: webclient styles #17

Workflow file for this run

name: Check Eslint and Prettier
on:
push:
branches:
- main
- master
- develop
pull_request:
workflow_dispatch:
jobs:
check:
name: Check Eslint and Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: echo "node_version=$(cat .github/nodejs.version)" >> $GITHUB_ENV
- name: "use node ${{ env.node_version }}"
uses: actions/setup-node@v3
with:
node-version: "${{ env.node_version }}"
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check lint
run: yarn check:lint
- name: Check prettier
run: yarn check:prettier