Lambda now properly executes the ZIO program #60
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Poker Dot Build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test-api: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'corretto' | |
cache: 'sbt' | |
- name: Run tests | |
run: sbt test lambda/universal:packageBin | |
test-frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up frontend toolchain | |
uses: actions/[email protected] | |
with: | |
node-version: 20.x | |
- name: Install project dependencies | |
run: npm install | |
working-directory: frontend | |
- name: Test frontend | |
run: npm run test | |
working-directory: frontend | |
- name: build frontend | |
run: npm run build | |
working-directory: frontend |