Skip to content

FEATURE: Dashboard Page and package added framer motion #80

FEATURE: Dashboard Page and package added framer motion

FEATURE: Dashboard Page and package added framer motion #80

name: Pre-commit checks
on:
pull_request:
branches: ['*']
jobs:
Lint_Check:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Cache Node.js dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies
run: yarn
- name: Lint check
run: yarn lint:check
- name: Prettier check
run: yarn format:check
- name: Test check
run: yarn test