Skip to content

Commit b232ba6

Browse files
committed
chore: deploy github action
1 parent b072a79 commit b232ba6

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/workflow.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Main workflow
2+
on: [push]
3+
jobs:
4+
Ubuntu:
5+
name: Run Ubuntu
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout
9+
uses: actions/checkout@master
10+
11+
- name: Set Node.js 10.x
12+
uses: actions/setup-node@master
13+
with:
14+
version: 10.x
15+
16+
- name: npm install
17+
run: npm install
18+
19+
- name: deploy
20+
run: npm run deploy
21+

0 commit comments

Comments
 (0)