Install node
Some checks failed
Ruby CI / test (pull_request) Successful in 38s
Deploy / deploy (push) Has been cancelled

This commit is contained in:
Andrew Tomaka 2024-06-23 10:08:03 -04:00
parent 7a7d004fc8
commit 71b1f984b5
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE

View file

@ -8,6 +8,15 @@ jobs:
deploy:
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
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v5