Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
fix: remove github action
Browse files Browse the repository at this point in the history
fix(client): removed bad component
  • Loading branch information
wesdevpro committed Nov 19, 2023
1 parent 99dc1d8 commit 0183037
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 30 deletions.
29 changes: 0 additions & 29 deletions .github/workflows/react.yml

This file was deleted.

40 changes: 40 additions & 0 deletions .github/workflows/react.yml.old.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs

name: Ensure React Project Builds

on:
push:
branches: ["dev", "main"]
pull_request:
branches: ["dev", "main"]
env:
DOTNET_CORE_VERSION: 8.0.x
WORKING_DIRECTORY: ./src/EducationTrail/ClientApp
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# omits 14.x because some of our devDependencies require 16.x or higher
node-version: [18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_CORE_VERSION }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Generate and Install ASP.NET Cert
run: |
dotnet dev-certs https --clean
dotnet dev-certs https --export-path ~/.aspnet/https --format Pem --no-password
- name: Test vite+react Project
run: |
npm ci --prefix "${{ env.WORKING_DIRECTORY }}"
npm run build --prefix "${{ env.WORKING_DIRECTORY }}"
Empty file.
1 change: 0 additions & 1 deletion src/EducationTrail/ClientApp/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import react from '@vitejs/plugin-react'
import { readFileSync } from 'fs'
import { certFilePath, keyFilePath } from './aspnetcore-https'

// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
resolve: {
Expand Down

0 comments on commit 0183037

Please sign in to comment.