We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ed94aa commit b417fc0Copy full SHA for b417fc0
.github/workflows/node.js.yml
@@ -0,0 +1,25 @@
1
+name: Deploy
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ workflow_dispatch:
8
9
+jobs:
10
+ deploy:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout Repository
14
+ uses: actions/checkout@v2
15
16
+ - name: Install Node.js
17
+ uses: actions/setup-node@v2
18
+ with:
19
+ node-version: '14'
20
21
+ - name: Install Dependencies
22
+ run: npm install
23
24
+ - name: Deploy
25
+ run: ./deploy.sh
0 commit comments