Skip to content

Commit

Permalink
add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincharm committed Jul 21, 2024
1 parent 11364ee commit eadd5be
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI
on: [push]

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

- name: install node
uses: actions/setup-node@v3
with:
cache: yarn
node-version: 18

- name: install node deps
run: yarn install --frozen-lockfile

- name: test
run: yarn test

0 comments on commit eadd5be

Please sign in to comment.