Skip to content

improvement in deploy #34

improvement in deploy

improvement in deploy #34

Workflow file for this run

name: Build and Deploy
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches:
- main
- babylon-version
permissions:
contents: write
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
testing:
name: Server Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Bun
uses: oven-sh/setup-bun@v1
- run: bun install
- run: bun test
#only deploys the main branch
deploy:
name: Build and Deploy
runs-on: ubuntu-latest
needs: testing
if: github.ref == 'refs/heads/main'
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
# Runs a single command using the runners shell
- name: Build the project
run: npm ci && npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist