Skip to content

Commit

Permalink
Added new workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroXClem committed Aug 8, 2024
1 parent 937c745 commit 19791f1
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Deploy Application

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

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

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

- name: Install dependencies
run: npm install

- name: Run development server
run: npm run dev

- name: Build application for current platform
run: npm run package

- name: Build application for all platforms
run: npm run package:all
Binary file modified doc/ali_pay.PNG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 19791f1

Please sign in to comment.