Skip to content

⚙️ Chore(enviroment): add pre-commit hook to husky and config lint… #7

⚙️ Chore(enviroment): add pre-commit hook to husky and config lint…

⚙️ Chore(enviroment): add pre-commit hook to husky and config lint… #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize]
jobs:
Continuous-Integration:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 20
- name: Setup pnpm
uses: pnpm/[email protected]
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Format Files
run: pnpm format
# - name: Linting Files
# run: pnpm lint:fix --force && pnpm lint --force
- name: Building Files
run: pnpm build
- name: Start Files
run: pnpm start