Skip to content

Commit

Permalink
Merge pull request #2492 from Leeaun1127/denniswong1225-patch-2
Browse files Browse the repository at this point in the history
GH pages deployment #2128
  • Loading branch information
DreadKnight authored Sep 12, 2023
2 parents 1785ce4 + a8234c3 commit 25a8b64
Show file tree
Hide file tree
Showing 2 changed files with 77 additions and 45 deletions.
77 changes: 77 additions & 0 deletions .github/workflows/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
name: Build and Configure

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: build
run: npx webpack --mode=production
env:
PUBLIC_PATH: '/AncientBeast/'
- name: Upload build artifact
uses: actions/upload-artifact@v1
with:
name: deploy
path: deploy

codeanalysis:
runs-on: ubuntu-22.04
needs: build

steps:
- name: Checkout code
uses: actions/checkout@v2
with:
path: /home/runner/work/AncientBeast/AncientBeast

- run: npm ci
- name: Static Code Analysis (ESLint)
run: npm run lint > eslint-report.log
- name: Static Code Analysis (ESLint)
run: cat eslint-report.log
- name: Archive ESLint Report
uses: actions/upload-artifact@v2
with:
name: eslint-report
path: eslint-report.log

test:
runs-on: ubuntu-22.04
needs: codeanalysis

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: 18

- name: Install dependencies
run: npm ci

- name: Lint code
run: npm run lint

- name: Build for testing
run: npm run build:dev

- name: Run tests
run: npm test

deploy:
runs-on: ubuntu-22.04
needs: test
steps:
- name: Deploy completed
run: echo "Deploy completed"
45 changes: 0 additions & 45 deletions .github/workflows/nodejs.yml

This file was deleted.

1 comment on commit 25a8b64

@vercel
Copy link

@vercel vercel bot commented on 25a8b64 Sep 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.