Skip to content
This repository was archived by the owner on Mar 11, 2026. It is now read-only.

chore(ci): update actions/checkout action to v5.0.1 #6

chore(ci): update actions/checkout action to v5.0.1

chore(ci): update actions/checkout action to v5.0.1 #6

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
- ready_for_review
merge_group:
workflow_dispatch:
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-24.04
steps:
- name: Harden runner
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
with:
egress-policy: audit
- name: Checkout code
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
- uses: cachix/install-nix-action@fd24c48048070c1be9acd18c9d369a83f0fe94d7 # v31
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: cachix/cachix-action@0fc020193b5a1fa3ac4575aa3a7d3aa6a35435ad # v16
with:
name: aidr-apigee
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- name: Install dependencies
run: nix develop -c pnpm install
- name: Lint
run: nix develop -c pnpm lint