Skip to content

Updating Code_of_Conduct.md #92

Updating Code_of_Conduct.md

Updating Code_of_Conduct.md #92

Workflow file for this run

name: Node.js CI
on:
pull_request:
branches: ["main"]
jobs:
build-react:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup react deployment
run: |
cd react
npm install
rm -rf dist
npm run build
cd ..
build-angular:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup angular deployment
run: |
cd angular
npm install
rm -rf dist
npm run build-prod
cd ..
build-vue:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup vue deployment
run: |
cd vue
npm install
rm -rf dist
npm run build
cd ..