aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2021-02-25 22:52:51 +0100
committerstonedDiscord <Tukz@gmx.de>2021-02-25 22:52:51 +0100
commit44b137cbf30fe76294f484ae72b514ac2778defd (patch)
tree81604b64c2f40f223a76f27ecea93c9166ccea64 /.github
parent5d85ec11c2bedf4c97efe1933f022727af80d4a1 (diff)
parentf0b68aa0a71f19d3abac783ddf5c1d435b11c71f (diff)
Merge branch 'master' of https://github.com/AttorneyOnline/webAO
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/nodejs.yml22
1 files changed, 9 insertions, 13 deletions
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml
index a1b0f1b..b37178b 100644
--- a/.github/workflows/nodejs.yml
+++ b/.github/workflows/nodejs.yml
@@ -7,24 +7,20 @@ jobs:
runs-on: ubuntu-latest
- strategy:
- matrix:
- node-version: [12.x]
-
steps:
- - uses: actions/checkout@v1
- - name: Use Node.js ${{ matrix.node-version }}
+ - name: Checkout
+ uses: actions/checkout@v1
+ - name: Setup Node
uses: actions/setup-node@v1
- with:
- node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
git submodule init
git submodule update
- npm update
npm install
npm ci
- npm run build --if-present
-# npm test
- env:
- CI: true
+ npm run build
+ - name: Deploy 🚀
+ uses: JamesIves/github-pages-deploy-action@4.0.0
+ with:
+ branch: gh-pages # The branch the action should deploy to.
+ folder: webAO # The folder the action should deploy.