Skip to content

Commit

Permalink
build: add ci workflow (#42)
Browse files Browse the repository at this point in the history
Resolves #25
  • Loading branch information
ank-it07 authored Oct 18, 2024
1 parent bd30be4 commit f9090c9
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Continuous Integration

on:
push:
branches:
- main

pull_request:
branches:
- main

jobs:
install-lint-build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Install pnpm
run: npm install -g pnpm

- name: Install dependencies
run: pnpm install

- name: Lint the code
run: pnpm lint

- name: Run Prettier check
run: pnpm format:check

- name: Build the project
run: pnpm build

0 comments on commit f9090c9

Please sign in to comment.