Skip to content

chore(release): prepare release v0.26.1 (#5612) #609

chore(release): prepare release v0.26.1 (#5612)

chore(release): prepare release v0.26.1 (#5612) #609

Workflow file for this run

name: JS linters
# Cancel workflow if there is a new change to the branch.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
on:
merge_group:
pull_request:
branches:
- main
push:
branches:
- main
paths:
- 'benchmarks/**'
jobs:
run-js-linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
- run: |
cd benchmarks/
corepack enable
yarn install --immutable
yarn js-lint
yarn js-fmt-check