Roi calculator #2303
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Zesty Website CI Dev | |
on: | |
pull_request: | |
branches: [stage,accounts,production,dev] | |
workflow_dispatch: | |
jobs: | |
build-check: | |
runs-on: ubuntu-latest | |
env: | |
PRODUCTION: 'false' | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: 1.0.4 | |
- name: Setup custom host for mylocal | |
run: echo "127.0.0.1 test.zesty.io" | sudo tee -a /etc/hosts | |
- name: Install dependencies | |
run: bun install | |
- name: Check format and linters | |
run: bun run test-all | |
- name: Build Project | |
run: bun run build |