Skip to content

Commit

Permalink
build actions
Browse files Browse the repository at this point in the history
  • Loading branch information
OHNIMUS-Leopold committed Dec 13, 2024
1 parent 6d4e3ea commit b1f1e9d
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test Build

on:
pull_request:
types:
- opened
- synchronize

jobs:
build:
runs-on: ubuntu-latest

steps:
# Checkout sur le dépot Github
- name: Checkout code
uses: actions/checkout@v3

# Configurer Node.js pour éxecuter la GitHub Action
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20

# Installer les dépendances NPM
- name: Install dependencies
run: npm install

# Lancer le Build
- name: Build Check
run: npm run build

0 comments on commit b1f1e9d

Please sign in to comment.