Skip to content

Update actions/checkout digest to 93cb6ef #257

Update actions/checkout digest to 93cb6ef

Update actions/checkout digest to 93cb6ef #257

name: Build ssh-agent
on:
push:
paths:
- .github/workflows/ssh-agent-build.yaml
- ssh-agent/**
pull_request:
paths:
- .github/workflows/ssh-agent-build.yaml
- ssh-agent/**
# Declare default permissions as read only.
permissions: read-all
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- name: Set up Node.js
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
with:
node-version: 24
- name: Install Node.js dependencies
run: |
pushd ssh-agent/
npm ci
popd
- name: Run linters
run: |
pushd ssh-agent/
npm run prettier
npm run eslint
popd
- name: Compile Node.js dependencies
run: |
pushd ssh-agent/
npm run compile
popd