Skip to content

Commit

Permalink
ci: add build test
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhousiru committed Jul 24, 2024
1 parent 64297cf commit ed2ac9e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on:
push:
pull_request:

jobs:
build:
name: Build Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up `pnpm`
uses: pnpm/action-setup@v4
with:
version: 9
run_install: true

- name: Build
run: pnpm build

0 comments on commit ed2ac9e

Please sign in to comment.