Skip to content

updated texts

updated texts #168

Workflow file for this run

name: Check commits
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
check:
runs-on: ubuntu-latest
name: Check
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- uses: actions/checkout@v3
- name: Prepare Node
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'
- name: Install Node packages
run: yarn install --frozen-lockfile
- name: Run code linter
run: npm run format:check