Skip to content

chore(deps): bump step-security/harden-runner from 2.9.1 to 2.10.0 #361

chore(deps): bump step-security/harden-runner from 2.9.1 to 2.10.0

chore(deps): bump step-security/harden-runner from 2.9.1 to 2.10.0 #361

Workflow file for this run

name: Check JS code
on: [push, pull_request]
permissions:
contents: read
jobs:
main:
name: Check
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@446798f8213ac2e75931c1b0769676d927801858
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
github.com:443
registry.npmjs.org:443
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
- name: NPM install
run: npm install
- name: Check Format
run: npm run format-check
- name: Unit tests
run: npm test