Compare commits
1 commit
ef610ab30d
...
6462111850
Author | SHA1 | Date | |
---|---|---|---|
6462111850 |
2 changed files with 8 additions and 2 deletions
|
@ -173,6 +173,10 @@ jobs:
|
|||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v4
|
||||
- uses: actions/setup-java@v4
|
||||
with:
|
||||
distribution: "temurin" # See 'Supported distributions' for available options
|
||||
java-version: "23"
|
||||
- name: Install bun
|
||||
uses: oven-sh/setup-bun@v2
|
||||
- uses: actions/cache@v4
|
||||
|
@ -183,6 +187,7 @@ jobs:
|
|||
key: ${{ runner.os }}-bun-
|
||||
restore-keys: |
|
||||
${{ runner.os }}-bun-
|
||||
- uses: extractions/setup-just@v3
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
cd frontend
|
||||
|
|
|
@ -30,8 +30,9 @@ export default defineConfig({
|
|||
],
|
||||
|
||||
webServer: {
|
||||
command: 'bun run start',
|
||||
command: 'cd .. && just start',
|
||||
url: 'http://localhost:4200',
|
||||
reuseExistingServer: !process.env.CI,
|
||||
},
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Reference in a new issue