From dbcf31c696c68e63fdb85fd6529c5ac4029ff082 Mon Sep 17 00:00:00 2001 From: Hugo Gresse Date: Sat, 12 Oct 2024 15:06:30 +0200 Subject: [PATCH] minor CI build changes --- .github/workflows/build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e4fac22..695d243 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,10 +1,10 @@ -name: Build project +name: Build & test front & functions project on: [push, pull_request] jobs: build: - name: Build front project + name: Build & test front & functions project runs-on: ubuntu-latest steps: @@ -14,10 +14,11 @@ jobs: - run: bun install --frozen-lockfile - run: bun run build - run: bun run tscheck + - name: Setup Node.js environment uses: actions/setup-node@v4 with: - node-version-file: .nvmrc + node-version-file: ./functions/.nvmrc - name: Build serverless functions working-directory: ./functions