Skip to content

Replace yarn with npm #175

Replace yarn with npm

Replace yarn with npm #175

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@v4
- name: Prepare Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn
- name: Install Node packages
run: yarn install --frozen-lockfile
- name: Run code linter
run: npm run format:check