Skip to content

Commit

Permalink
added ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Manudasari265 committed Feb 26, 2025
1 parent 25443b5 commit c1d3310
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 3 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: check-pull-requests

on:
push:
branches:
- main

concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.event.pull_request.head.sha || github.sha }}

jobs:
check:
name: Check Pull Requests
runs-on: ubuntu-latest
steps:
- name: Checkout code πŸ›Ž
uses: ubuntu-latest

- name: Setup pnpm πŸ“¦
uses: pnpm/action-setup@v3

- name: Setup Node.js 🟩
uses: actions/setup-node@v4
with:
cache: "pnpm"
node-version: "23"

- name: Install dependencies πŸ“¦
run: pnpm install

- name: Check 🚨
run: pnpm check
3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
"typescript": "5.7.3"
},
"packageManager": "pnpm@10.0.0",
"engines": {
"node": "23.3.0"
},
"workspaces": [
"apps/*",
"packages/*"
Expand Down

0 comments on commit c1d3310

Please sign in to comment.