Skip to content

Commit

Permalink
chore: Add Github workflow for CI
Browse files Browse the repository at this point in the history
Signed-off-by: Arnau Siches <[email protected]>
  • Loading branch information
arnau committed Jul 2, 2023
1 parent 4d8815c commit ae0728a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build/test
on:
push:
branches:
- main
pull_request:
branches:
- "**"

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm install
- run: npm test

0 comments on commit ae0728a

Please sign in to comment.