🚀 video call setup initail done #292
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-client: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: Cache Node.js dependencies for client | |
uses: actions/cache@v3 | |
with: | |
path: client/node_modules | |
key: client-node-modules-${{ hashFiles('client/package-lock.json') }} | |
restore-keys: | | |
client-node-modules- | |
- name: Install dependencies for client | |
run: npm install | |
working-directory: client | |
- name: Run lint for client | |
run: npm run lint | |
working-directory: client | |
- name: Build client project | |
run: npm run build | |
working-directory: client | |
- name: Run tests for client | |
run: npm test | |
working-directory: client | |
build-server: | |
runs-on: ubuntu-latest | |
needs: build-client | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
- name: Cache Node.js dependencies for server | |
uses: actions/cache@v3 | |
with: | |
path: server/node_modules | |
key: server-node-modules-${{ hashFiles('server/package-lock.json') }} | |
restore-keys: | | |
server-node-modules- | |
- name: Install dependencies for server | |
run: npm install | |
working-directory: server | |
- name: Build server project | |
run: npm run build | |
working-directory: server | |
- name: Run tests for server | |
run: npm test | |
working-directory: server |