Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial workflow setup #24

Merged
merged 2 commits into from
Jul 19, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build, Test, and Deploy for Dev Branch

on:
push:
branch:
- dev

jobs:
build:
runs-on: self hosted

steps:
- name: Checkout code
uses: actions/checkout@v2
- name: install dependencies
run: yarn install
- name: buld the dist
run: yarn build


# test:
# -name: Run test
# run: yarn jest

deploy:
runs-on: self-hosted
needs: build
if: github.ref == 'refs/heads/dev'

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Install dependencies
run: yarn install