Skip to content

Commit

Permalink
Update build.yaml to install node v20
Browse files Browse the repository at this point in the history
  • Loading branch information
olliecheng authored Jul 11, 2024
1 parent 3b6cc40 commit 87aac2b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
matrix:
include:
- os: ubuntu-latest
- os: centos-7
label: linux-x64
container: quay.io/pypa/manylinux2014_x86_64
- os: macos-14
Expand All @@ -16,6 +16,10 @@ jobs:
runs-on: ${{ matrix.os }}
container: ${{ matrix.container }}
steps:
- name: Install nodejs v20
if: ${{ matrix.os == 'centos-7' }}
run: yum install nodejs20

- name: Checkout code
uses: actions/checkout@v3

Expand Down

0 comments on commit 87aac2b

Please sign in to comment.