Skip to content

Commit 77b8ea8

Browse files
committed
Merge branch 'master' of github.com:coding-blocks/dukaan-admin-frontend
2 parents e381fbe + 88cd753 commit 77b8ea8

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/node.js.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+
name: Node.js CI
5+
6+
# Controls when the action will run. Triggers the workflow on push or pull request
7+
# events but only for the master branch
8+
on:
9+
push:
10+
branches: [ master ]
11+
12+
jobs:
13+
deploy:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@master
17+
- name: Install Dependencies
18+
run: yarn install
19+
- name: Build and generate static output
20+
run: yarn deploy

0 commit comments

Comments
 (0)