Skip to content

Commit

Permalink
Merge pull request #499 from birkskyum/test-workflow
Browse files Browse the repository at this point in the history
Add github test workflow
  • Loading branch information
ryansolid authored Dec 4, 2024
2 parents 60693c9 + 6c1c1d4 commit 9a9a6e9
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Tests

on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22"

- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9

- name: Install dependencies
run: pnpm install

- name: Run tests
run: pnpm run test

0 comments on commit 9a9a6e9

Please sign in to comment.