diff options
Diffstat (limited to '.github/workflows/nodejs.yml')
| -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. |
