Skip to content

delete useless comments #101

delete useless comments

delete useless comments #101

Workflow file for this run

# A NYU Capstone Project
# The Guild Manager by JV · CC · ZQ · ZF
# This is a workflow to test and deploy The Guild Manager.
name: Master_CI/CD
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Build
run: CI=false npm run build