Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit 28c0826

Browse files
committed
Add CI GHA workflow to run tests on PRs
Signed-off-by: Laura Brehm <laurabrehm@hey.com>
1 parent 4c9d938 commit 28c0826

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
workflow_dispatch:
9+
10+
jobs:
11+
test:
12+
name: Test
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
- uses: actions/setup-node@v3
17+
with:
18+
node-version: 16
19+
- run: yarn install --frozen-lockfile
20+
- run: yarn test

0 commit comments

Comments
 (0)