chore(deps): bump anthropics/claude-code-action from 06e550b8ff71349db253443c6ca8a4b120e7f89d to 8a1c4371755898f67cd97006ba7c97702d5fc4bf #510
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ⚡ CI | |
| # Dependencies: | |
| # - SocketDev/socket-registry/.github/workflows/ci.yml | |
| on: | |
| push: | |
| branches: [main] | |
| tags: ['*'] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| name: Run CI Pipeline | |
| uses: SocketDev/socket-registry/.github/workflows/ci.yml@42af85173896eefdd299364a2200d308b1c63caa # main | |
| with: | |
| fail-fast: false | |
| lint-script: 'pnpm run lint --all' | |
| lint-setup-script: 'pnpm run build' | |
| node-versions: '[20, 22, 24]' | |
| os-versions: '["ubuntu-latest", "windows-latest"]' | |
| test-script: 'pnpm run test --all --fast' | |
| test-setup-script: 'pnpm run build' | |
| type-check-script: 'pnpm run check' | |
| type-check-setup-script: 'pnpm run build' | |
| test-npm-packages: | |
| name: Test NPM Packages | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 60 | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| autocrlf: false | |
| - uses: SocketDev/socket-registry/.github/actions/setup-and-install@42af85173896eefdd299364a2200d308b1c63caa # main | |
| with: | |
| node-version: 22 | |
| - uses: SocketDev/socket-registry/.github/actions/cache-npm-packages@42af85173896eefdd299364a2200d308b1c63caa # main | |
| - name: Build registry | |
| run: pnpm run build | |
| - name: Run npm package tests | |
| run: node scripts/test-npm-packages.mjs |