Skip to content

fix(deps): bump replace-in-file from 7.1.0 to 8.0.1 #1157

fix(deps): bump replace-in-file from 7.1.0 to 8.0.1

fix(deps): bump replace-in-file from 7.1.0 to 8.0.1 #1157

Workflow file for this run

name: "build"
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["20"]
steps:
- uses: step-security/harden-runner@a4aa98b93cab29d9b1101a6143fb8bce00e2eac4 # v2.7.1
with:
egress-policy: audit
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
fetch-depth: 0
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check format and lint
run: yarn run format-check && yarn run lint
- name: Build and package
run: yarn run build
- name: Run tests
run: yarn test