Skip to content

Merge pull request #2474 from andretchen0/refactor-interface-game #1315

Merge pull request #2474 from andretchen0/refactor-interface-game

Merge pull request #2474 from andretchen0/refactor-interface-game #1315

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- name: lint
run: npm run lint
- name: build
run: npx webpack --mode=production
env:
PUBLIC_PATH: '/AncientBeast/'
- name: Upload build artifact
uses: actions/upload-artifact@v1
with:
name: deploy
path: deploy
deploy:
runs-on: ubuntu-22.04
needs: build
if: github.ref == 'refs/heads/master'
steps:
- name: Download build artifact
uses: actions/download-artifact@v1
with:
name: deploy
# Uses: https://github.com/peaceiris/actions-gh-pages
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./deploy