Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Cleboost authored Sep 1, 2024
1 parent a9f3efd commit 919cccc
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build and Test

on:
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '22.x' # remplacez par la version de Node.js que vous utilisez

- name: Install dependencies
run: npm i

- name: Run build
run: npm run build

#- name: Run tests
# run: npm test

0 comments on commit 919cccc

Please sign in to comment.