Skip to content

Commit

Permalink
CI: install nodejs before checkout repository
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Olivier <[email protected]>
  • Loading branch information
martin-olivier committed Jan 9, 2025
1 parent a11eec3 commit 60eb9e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,13 @@ jobs:
- ${{ github.workspace }}:/workspace

steps:
- uses: actions/checkout@v4

- name: Update packages
run: apt update

- name: Install build tools
run: apt install -y build-essential cmake
- name: Install build tools and node to be able to checkout the repository
run: apt install -y build-essential cmake nodejs

- uses: actions/checkout@v4

- name: Generate project files
run: cmake . -B build -DCMAKE_CXX_STANDARD=${{ matrix.cxx-std }} -DDYLIB_BUILD_TESTS=ON -DDYLIB_WARNING_AS_ERRORS=ON
Expand Down

0 comments on commit 60eb9e9

Please sign in to comment.