Skip to content

Commit

Permalink
ci: add github action to run test
Browse files Browse the repository at this point in the history
  • Loading branch information
zackad committed Feb 16, 2024
1 parent 47d2d7e commit 0f9dc0a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test

on:
push:
branches:
- master
pull_request:

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

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

- name: Install Dependencies
run: yarn install

- name: Run Test
run: yarn test

0 comments on commit 0f9dc0a

Please sign in to comment.