From ad6369e5dc3d19570cd2705598f33f332c06a67c Mon Sep 17 00:00:00 2001 From: Aral Roca Date: Sat, 24 Aug 2024 17:55:41 +0200 Subject: [PATCH] chore: add Node.js tthe pipeline --- .github/workflows/test.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index bab4e20b8..bfa4ec5f1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,11 +15,20 @@ jobs: os: [ubuntu-latest, windows-latest, macos-latest] steps: + # Useful to test Node.js runtime is working fine on some tests + - uses: actions/checkout@v4 + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: '22' + + # Bun setup, used for almost everything inside the project - uses: actions/checkout@v4 - name: Bunjs uses: oven-sh/setup-bun@v1 with: bun-version: 1.1.26 + - name: Install dependencies run: bun install - run: bun run build