testing worklflow

This commit is contained in:
cupcakearmy 2022-10-14 13:11:00 +02:00
parent c87fd3eaf5
commit 4ee5666033
No known key found for this signature in database
GPG Key ID: 3235314B4D31232F

21
.github/workflows/test.yaml vendored Normal file
View File

@ -0,0 +1,21 @@
name: "Run Tests"
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PNPM
uses: pnpm/action-setup@v2
- name: Install dependencies
run: pnpm install
- name: Run tests
run: pnpm run test