Skip to content

Commit

Permalink
chore github action added
Browse files Browse the repository at this point in the history
  • Loading branch information
rrd108 committed Sep 10, 2024
1 parent af24774 commit 9cc400f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Run Tests

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

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

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

- name: Install dependencies
run: yarn install

- name: Run tests
run: yarn test

0 comments on commit 9cc400f

Please sign in to comment.