Skip to content

Commit

Permalink
Fix test files
Browse files Browse the repository at this point in the history
  • Loading branch information
gdsc0301 committed Sep 12, 2023
1 parent f8971a8 commit 92c95e8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
deploy:
name: Build and Deploy
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
Expand All @@ -29,9 +28,16 @@ jobs:
with:
node-version-file: '.nvmrc'

# Runs a single command using the runners shell
- run: npm ci

- name: Setup Bun
uses: oven-sh/setup-bun@v1

- name: Install dependencies
run: bun install

- name: Build the project
run: npm ci && npm run build
run: bun run build

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/server_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Server Tests
on:
push:
branches:
- master
- main
- babylon-version

jobs:
Expand Down

0 comments on commit 92c95e8

Please sign in to comment.