Still need node
All checks were successful
Ruby CI / test (pull_request) Successful in 29s

This commit is contained in:
Andrew Tomaka 2024-04-23 20:57:59 -04:00
parent 2edcc17a7c
commit fcbbc0d0e8
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE

View file

@ -7,6 +7,15 @@ jobs:
test:
runs-on: ruby-latest
steps:
- name: Install Node
run: |
apt-get update
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: Install dependencies
run: bundle install