Skip to content

Run releases via GitHub Actions with npm provenance and SBOM (#2491) #2443

Run releases via GitHub Actions with npm provenance and SBOM (#2491)

Run releases via GitHub Actions with npm provenance and SBOM (#2491) #2443

Workflow file for this run

name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
node-version: [24.x]
steps:
- name: Harden Runner
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
egress-policy: audit
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install Browsertime
run: npm ci
- name: Lint
run: npm run lint