Skip to content

chore(deps): bump step-security/harden-runner from 2.7.1 to 2.8.0 #315

chore(deps): bump step-security/harden-runner from 2.7.1 to 2.8.0

chore(deps): bump step-security/harden-runner from 2.7.1 to 2.8.0 #315

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@f086349bfa2bd1361f7909c78558e816508cdc10
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