Skip to content

Bump ossf/scorecard-action from 2.4.0 to 2.4.3 #45

Bump ossf/scorecard-action from 2.4.0 to 2.4.3

Bump ossf/scorecard-action from 2.4.0 to 2.4.3 #45

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
test:
name: test (node ${{ matrix.node }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [18, 20, 22]
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Setup Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: ${{ matrix.node }}
- name: Install
run: npm install --ignore-scripts
- name: Unit tests
run: npm test
- name: Static check CLI entrypoint
run: node --check bin/multiagent-safety.js
- name: Package dry run
run: npm pack --dry-run