forked from codeurjc-students/openvidu-tutorials-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
15747d7
commit f2d0aa5
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,19 +11,19 @@ jobs: | |
steps: | ||
- name: Check out the repo | ||
uses: actions/checkout@v3 | ||
- name: Setup Node.js environment | ||
uses: actions/[email protected] | ||
- name: Run the build process with Docker | ||
run: | | ||
sudo docker run -p 4443:4443 --rm -e OPENVIDU_SECRET=MY_SECRET openvidu/openvidu-dev:2.27.0 & | ||
npx update-browserslist-db@latest | ||
echo DOCKER | ||
docker run -p 4443:4443 --rm -e OPENVIDU_SECRET=MY_SECRET openvidu/openvidu-dev:2.27.0 & | ||
echo server application | ||
cd openvidu-basic-node | ||
sudo npm install | ||
sudo node index.js & | ||
echo client application tutorial | ||
cd .. | ||
cd openvidu-react | ||
npm install | ||
npm start | ||
sudo npm install | ||
sudo npm start | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
|