Skip to content

Commit

Permalink
Add CI Workflow (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
Soulike authored Jan 14, 2025
1 parent ad13bf3 commit 185a0c2
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI

on:
pull_request:
branches:
- main
workflow_dispatch:

jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PNPM
uses: pnpm/action-setup@v4
with:
version: latest
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: lts/*
check-latest: true
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install
- name: Build
run: pnpm build:all

0 comments on commit 185a0c2

Please sign in to comment.