Skip to content

Commit

Permalink
[Job]: Adding built, lint, test, and deployment job (#26) (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
onemanfighter committed May 5, 2024
1 parent 8eb4ee4 commit 4dbfc81
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 1 deletion.
28 changes: 28 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Deploy website on production

on:
push:
branches: ['production']

jobs:
setup_and_deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- name: Install Dependencies
run: yarn install
- name: Build
run: yarn build --if-present
- name: 📂 Sync files
uses: SamKirkland/[email protected]
with:
server: ftp.dashboard.amitraikwar.in
username: u392139545.github_deploy_dashwave
password: ${{ secrets.HOSTINGER_DASHWAVE_FTP_PASSWORD }}
local-dir: ./build/
server-dir: ./
26 changes: 26 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
push:
branches: ['development']
pull_request:
branches: ['development']

jobs:
build_test_lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
- name: Install Dependencies
run: yarn install
- name: Build
run: yarn build --if-present
- name: Linting
run: yarn lint:staged
- name: Test
run: yarn test
11 changes: 11 additions & 0 deletions src/service/env.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Supabase constants:
const SUPABASE_URL = 'https://derclltpzfohoecoxvge.supabase.co';
const SUPABASE_KEY =
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImRlcmNsbHRwemZvaG9lY294dmdlIiwicm9sZSI6ImFub24iLCJpYXQiOjE3MDY0NDU2NjIsImV4cCI6MjAyMjAyMTY2Mn0.EDVPLpVX82RLxYlSv7ekIxcuXAP_fmEkzhOh67oXECk';

// Data base table names
const USER_PROFILE_TABLE = 'dashwave_users';
const PROJECTS_TABLE = 'dashwave_projects';

// Export the constants
export { SUPABASE_URL, SUPABASE_KEY, USER_PROFILE_TABLE, PROJECTS_TABLE };
2 changes: 1 addition & 1 deletion src/service/supabase/supabase_main/Supabase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
PROJECTS_TABLE,
SUPABASE_KEY,
SUPABASE_URL,
} from '../../../env';
} from '../../env';

// Supabase configuration
const supabaseUrl = SUPABASE_URL;
Expand Down

0 comments on commit 4dbfc81

Please sign in to comment.