Skip to content
This repository has been archived by the owner on Feb 10, 2025. It is now read-only.

[WIP] 🔖 (25.2.1) fix desktop apps and reports page #1700

[WIP] 🔖 (25.2.1) fix desktop apps and reports page

[WIP] 🔖 (25.2.1) fix desktop apps and reports page #1700

Workflow file for this run

name: Linter
on:
push:
branches:
- master
pull_request:
branches: '*'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Cache
uses: actions/cache@v4
id: cache
with:
path: '**/node_modules'
key: yarn-v1-${{ hashFiles('**/yarn.lock') }}
- name: Install
run: yarn --immutable
if: steps.cache.outputs.cache-hit != 'true'
- name: Lint
run: yarn lint