furality-stream-recorder/.github/workflows/test.yml
Lillith Rose (Device: Lucia) fdeba8fd41
Some checks are pending
Build Docker Image / docker (push) Waiting to run
Test / test (push) Waiting to run
Initial Commit
2025-06-08 14:33:19 -04:00

25 lines
No EOL
508 B
YAML

name: Test
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
- name: Setup pnpm
uses: pnpm/action-setup@v4.1.0
- name: Setup Node
uses: actions/setup-node@v4.2.0
with:
node-version: 22.13.1
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: Test
run: pnpm test