Skip to content

chore: add pr-check.yml github actions #1

chore: add pr-check.yml github actions

chore: add pr-check.yml github actions #1

Workflow file for this run

name: Pull Request Check
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
checking-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
- name: Install dependencies
run: yarn install
- name: Run prettier
run: yarn prettier
- name: Run lint
run: yarn lint
- name: Run test
run: yarn test:verbose:coverage