Skip to content

Commit

Permalink
add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanflorence committed Dec 8, 2024
1 parent 4c2196d commit c5cd970
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test

on:
push:
branches:
- "main"
tags-ignore:
- "*"
pull_request:
paths:
- "src/**"

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v4

- uses: actions/setup-node@v4
with:
node-version: "22.x"
registry-url: "https://registry.npmjs.org"
cache: "pnpm"

- run: pnpm install

- run: pnpm test

0 comments on commit c5cd970

Please sign in to comment.