Skip to content

Commit

Permalink
minimal testing flow for quality of life
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeh committed Aug 6, 2024
1 parent d3a7092 commit f229f7d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Tests

on:
push:

jobs:
tests:
name: tests
runs-on: ubuntu-22.04

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Node setup
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'

- uses: pnpm/action-setup@v4

- name: Install deps
run: pnpm install

- name: Run Client tests
run: pnpm test

0 comments on commit f229f7d

Please sign in to comment.