Skip to content

Commit

Permalink
build: add github build action
Browse files Browse the repository at this point in the history
  • Loading branch information
mahyarmirrashed committed Dec 10, 2024
1 parent 236623e commit 7ecb9b1
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Build project

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "22"
- name: Setup pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm run build

0 comments on commit 7ecb9b1

Please sign in to comment.