From cd8e1488c2d56cc8ce07ce524457440833125089 Mon Sep 17 00:00:00 2001 From: camille Date: Mon, 30 Mar 2026 09:34:21 +0200 Subject: [PATCH] tentative de resolution dun bug de derniere minute --- .github/workflows/build.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..56c0e7e --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,19 @@ +name: Build + +on: + push: + branches: [ main ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 18 + - run: cd parcoursup-app && npm install && npm run build + - uses: actions/upload-artifact@v3 + with: + name: dist + path: parcoursup-app/dist/ \ No newline at end of file