-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix and update OS dependencies on Ubuntu
- Loading branch information
1 parent
8117b8a
commit 6e5e585
Showing
2 changed files
with
10 additions
and
1 deletion.
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
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 |
---|---|---|
|
@@ -36,6 +36,11 @@ jobs: | |
steps: | ||
- name: Checkout the repo | ||
uses: actions/checkout@v2 | ||
- name: update OS | ||
run: | | ||
sudo apt-get update | ||
sudo apt install -y --no-install-recommends gcc g++ make build-essential | ||
if: ${{ runner.os == 'Linux' }} | ||
- name: Set up Node.js ${{ matrix.node-version }} | ||
uses: actions/[email protected] | ||
with: | ||
|