Skip to content

Commit

Permalink
Automate tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Glowstudent777 committed May 15, 2024
1 parent 303a6b9 commit b42e59e
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Tests

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

jobs:
tests:
runs-on: ubuntu-latest

steps:
- name : Checkout repo
uses: actions/checkout@v2

- name: Set up Node
uses: actions/setup-node@v3

- name: Install dependencies
run: pnpm install

- run: pnpm run test

0 comments on commit b42e59e

Please sign in to comment.