We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2550b2d + fb32921 commit 512ba8aCopy full SHA for 512ba8a
.github/workflows/test.yml
@@ -51,4 +51,7 @@ jobs:
51
cache-dependency-path: ui/package-lock.json
52
53
- name: Run tests
54
- run: make test-ui
+ uses: cypress-io/github-action@v4
55
+ with:
56
+ component: true
57
+ working-directory: ui
ui/vite.config.ts
@@ -5,8 +5,7 @@ import 'dotenv/config'
5
// https://vitejs.dev/config/
6
export default defineConfig(({mode}) => {
7
if (mode !== "production" && !process.env.VITE_KUBERNETES_API_URL) {
8
- console.log('environment variable VITE_KUBERNETES_API_URL is not defined')
9
- process.exit(1)
+ console.log('⚠️ WARNING ⚠️ :environment variable VITE_KUBERNETES_API_URL is not defined. API may not be working!')
10
}
11
return {
12
plugins: [svelte()],
0 commit comments