Skip to content
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.

Commit

Permalink
Merge pull request #9 from tanishiking/setup-ci
Browse files Browse the repository at this point in the history
Setup github actions
  • Loading branch information
tanishiking authored Mar 7, 2024
2 parents ec03bdc + 6cdc13e commit 43a5845
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
- uses: actions/setup-node@v4
with:
node-version: '22-nightly'
- name: npm install
run: npm install
- name: Tests
run: sbt tests/test
- name: Run the Sample
run: sbt sample/run

0 comments on commit 43a5845

Please sign in to comment.