Skip to content

Commit

Permalink
github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian0KIM committed Nov 21, 2024
1 parent 4440bfd commit 47cfcb4
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .github/workflows/backend.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Backend CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest

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

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'

- name: Install dependencies
run: npm install

- name: Run tests
run: npm test
1 change: 0 additions & 1 deletion .github/workflows/df

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/frontend.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Frontend CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest

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

- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '2.5.3'

- name: Install dependencies
run: flutter pub get

- name: Run tests
run: flutter test

0 comments on commit 47cfcb4

Please sign in to comment.