Skip to content

Commit

Permalink
Added test workflow on main push
Browse files Browse the repository at this point in the history
  • Loading branch information
victrme committed Dec 13, 2023
1 parent dfa89a7 commit 50a9ff9
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Run tests

on:
push:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: latest

- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'

- run: pnpm install
- run: pnpm test

0 comments on commit 50a9ff9

Please sign in to comment.