27 lines
430 B
YAML
27 lines
430 B
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: git-checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v3
|
|
with:
|
|
version: 9
|
|
|
|
- name: Build project
|
|
uses: pnpm/action-setup@v3
|
|
with:
|
|
node-version: 20.x
|
|
- run: pnpm install
|
|
- run: pnpm run build
|