diff options
| author | stonedDiscord <Tukz@gmx.de> | 2021-02-25 22:52:51 +0100 |
|---|---|---|
| committer | stonedDiscord <Tukz@gmx.de> | 2021-02-25 22:52:51 +0100 |
| commit | 44b137cbf30fe76294f484ae72b514ac2778defd (patch) | |
| tree | 81604b64c2f40f223a76f27ecea93c9166ccea64 /.github | |
| parent | 5d85ec11c2bedf4c97efe1933f022727af80d4a1 (diff) | |
| parent | f0b68aa0a71f19d3abac783ddf5c1d435b11c71f (diff) | |
Merge branch 'master' of https://github.com/AttorneyOnline/webAO
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/nodejs.yml | 22 |
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. |
