Skip to content

Шаг 2 #292

Шаг 2 #292 #405

Workflow file for this run

name: Tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm ci
- name: Lint
run: |
npm run lint:styles
npm run lint:scripts
npm run prettier:check
- name: Test
run: npm run test:coverage