Merge pull request #2472 from JoelFernandes09/feat/opencollective-banner #1308
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |