default framework is none #57
Workflow file for this run
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: Integration Test | |
on: | |
pull_request: | |
branches: | |
- main | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
test: | |
name: Integration Test | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- uses: oven-sh/setup-bun@v1 | |
# - uses: coursier/cache-action@v6 | |
- uses: VirtusLab/scala-cli-setup@main | |
with: | |
jvm: adopt:11 | |
- name: Setup Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install Dependencies & Build & Test Generator | |
run: | | |
corepack enable | |
pnpm install | |
pnpm build | |
pnpm test | |
- name: Register Link Package | |
run: bun link | |
working-directory: ./packages/scalawind | |
- name: Integration Test | |
run: | | |
bun install | |
bun generate | |
scala-cli test src | |
working-directory: ./integration |