removed the facebook and linkedin button #112
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
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 .. |