Skip to content

ci: implement check-pr workflow #1

ci: implement check-pr workflow

ci: implement check-pr workflow #1

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