Skip to content

chore(deps): bump the eslint group across 1 directory with 2 updates #1114

chore(deps): bump the eslint group across 1 directory with 2 updates

chore(deps): bump the eslint group across 1 directory with 2 updates #1114

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@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
with:
egress-policy: audit
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
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