Skip to content

ci: 👷 Added Vercel Workflow #2

ci: 👷 Added Vercel Workflow

ci: 👷 Added Vercel Workflow #2

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm install
- name: ESLint Lint Check
run: npm run lint
- name: ESLint Fix
run: npm run lint:fix