Skip to content

build(deps-dev): bump @vitest/ui from 4.0.15 to 4.0.16 #311

build(deps-dev): bump @vitest/ui from 4.0.15 to 4.0.16

build(deps-dev): bump @vitest/ui from 4.0.15 to 4.0.16 #311

Workflow file for this run

name: Lint
permissions:
contents: read
pull-requests: write
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Enable Corepack
run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 24
cache: yarn
- uses: actions/cache@v4
with:
path: node_modules
key: yarn-cache-${{ hashFiles('yarn.lock') }}
- name: Install Dependencies
run: yarn install --immutable
- name: Build Janja
run: yarn build
working-directory: packages/janja
- name: Build ESLint Plugin Janja
run: yarn build
working-directory: packages/eslint-plugin-janja
- name: Run lint
run: yarn lint