30 lines
495 B
YAML
30 lines
495 B
YAML
name: CI
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
env:
|
|
SECRET_POCKETBASE_API_URL: ${{ vars.SECRET_POCKETBASE_API_URL }}
|
|
|
|
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:
|
|
version: 9
|
|
- run: pnpm install
|
|
- run: pnpm run build
|