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.
2 parents e381fbe + 88cd753 commit 77b8ea8Copy full SHA for 77b8ea8
.github/workflows/node.js.yml
@@ -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