From a4a37761161e3e666d58aaace3325da61bbfe323 Mon Sep 17 00:00:00 2001 From: Pedro Dias Date: Mon, 25 Sep 2023 19:41:35 +0100 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0cb3942..81852d3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,6 +15,7 @@ jobs: steps: - uses: actions/checkout@v3 + - uses: oven-sh/setup-bun@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 @@ -30,6 +31,8 @@ jobs: - name: NPM install run: npm install - - name: Tests + - name: Nodejs Tests run: npm test + - name: Bun Tests + run: bun run test