Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
apocas committed Sep 25, 2023
1 parent a4a3776 commit 428f22a
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/main.yml
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:

jobs:
build:
build_nodejs:
runs-on: ubuntu-latest

strategy:
Expand All @@ -15,7 +15,6 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
Expand All @@ -34,5 +33,21 @@ jobs:
- name: Nodejs Tests
run: npm test

build_bun:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v1

- name: Provisioning
run: |
docker --version
bun -v
docker pull ubuntu
- name: Bun install
run: bun install

- name: Bun Tests
run: bun run test

0 comments on commit 428f22a

Please sign in to comment.