Initial project upload to test support for custom gitea composite actions

This commit is contained in:
2023-07-27 14:09:07 +02:00
parent d7b1e90025
commit c5d240ffad
20 changed files with 8682 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
test: {
globals: true,
environment: 'jsdom',
setupFiles: './src/test/setup.js',
reporters: ['json'],
outputFile: 'test.json'
},
});