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

Bump @types/react-dom from 18.2.13 to 18.2.14 #86

Bump @types/react-dom from 18.2.13 to 18.2.14

Bump @types/react-dom from 18.2.13 to 18.2.14 #86

Workflow file for this run

name: Build Project
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
target: [x86_64, x86]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies (React)
run: npm install
- name: Build React
run: npm run build
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build Backend (Rust)
run: cargo build --release
working-directory: backend/
windows:
runs-on: windows-latest
strategy:
matrix:
target: [x64, x86]
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies (React)
run: npm install
- name: Build React
run: npm run build
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Build Backend (Rust)
run: cargo build --release
working-directory: backend/