Skip to content

Commit

Permalink
Nightly CI for Vscode tests
Browse files Browse the repository at this point in the history
Signed-off-by: Shveta Sachdeva <[email protected]>
  • Loading branch information
sshveta committed Oct 31, 2024
1 parent 23e6c1e commit 1b20fb0
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/nightly-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,20 @@ jobs:
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install Vscode
run: sudo apt install code
- name: Install dependencies
- name: Install vscode dependencies
run: sudo apt-get update && sudo apt-get install -y wget

- name: Download and Install VSCode
run: |
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg
sudo install -o root -g root -m 644 microsoft.gpg /usr/share/keyrings/
echo "deb [signed-by=/usr/share/keyrings/microsoft.gpg] https://packages.microsoft.com/repos/vscode stable main" | sudo tee /etc/apt/sources.list.d/vscode.list
sudo apt-get update
sudo apt-get install -y code
- name: Verify Installation
run: code --version
- name: Install playwright dependencies
run: npm install
- name: More dependencies
run: npm ci
Expand Down

0 comments on commit 1b20fb0

Please sign in to comment.