Skip to content

Merge pull request #21 from RimidalU/feat/backend #4

Merge pull request #21 from RimidalU/feat/backend

Merge pull request #21 from RimidalU/feat/backend #4

Workflow file for this run

name: Pull requests check
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
- uses: actions/checkout@v4
- name: Change version node
- uses: actions/setup-node@v3
with:
node-version: 20.x.x
cache: npm
- run: npm ci
- run: npm run format:verify
- run: npm run lint:verify
- run: npm run lint:types
- run: npm run test