Skip to content

Commit

Permalink
feat: Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ikkz committed Nov 20, 2024
1 parent 487b2a8 commit a21e018
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on:
push:
branches: ['main']
pull_request:
branches: ['main']

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js 22
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: 'pnpm'
- run: pnpm install
- run: node cli.js

- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: '0.4.27'
- name: Release Test
run: uv run --frozen release.py

0 comments on commit a21e018

Please sign in to comment.