Install a newer node version
Some checks failed
Ruby CI / test (pull_request) Failing after 30s

This commit is contained in:
Andrew Tomaka 2024-03-20 21:20:53 -04:00
parent fa3db2e586
commit c9819bfa93
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE

View file

@ -10,7 +10,12 @@ jobs:
- name: Install Dependencies
run: |
apt-get update
apt-get install nodejs git --yes
apt-get install git ca-certificates curl gnupg --yes
mkdir -p /etc/apt/keyrings
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list
apt-get update
apt-get install -y nodejs
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1