Skip to content

Commit

Permalink
candidate CI flow with bun
Browse files Browse the repository at this point in the history
  • Loading branch information
finbargiusti committed Oct 31, 2023
1 parent 1283edf commit e1a76fe
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/deploy.yml
Expand Up @@ -24,22 +24,21 @@ concurrency:
cancel-in-progress: true

jobs:

# Build job
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16'
- name: Seup bun
uses: oven-sh/setup-bun@v1
- name: Setup Pages
uses: actions/configure-pages@v2
- name: Install dependencies
run: yarn install
run: bun install
- name: Build with vite
run: yarn run build --base=/DrawTogether/
run: bun run build --base=/DrawTogether/
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
Expand Down

0 comments on commit e1a76fe

Please sign in to comment.