Skip to content

Commit

Permalink
Added build steps
Browse files Browse the repository at this point in the history
  • Loading branch information
tmoreno committed Oct 9, 2022
1 parent a6ee4ed commit 4d426ca
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 16.17
- name: see directory
run: ls
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Package
run: npm run dist:linux

build_on_mac:
runs-on: macos-latest
Expand All @@ -22,8 +26,12 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 16.17
- name: see directory
run: ls
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Package
run: npm run dist:mac

build_on_win:
runs-on: windows-latest
Expand All @@ -32,5 +40,9 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: 16.17
- name: see directory
run: dir
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Package
run: npm run dist:win

0 comments on commit 4d426ca

Please sign in to comment.