Skip to content

site: use quicklink from dist and switch to npm workspaces #883

site: use quicklink from dist and switch to npm workspaces

site: use quicklink from dist and switch to npm workspaces #883

Workflow file for this run

name: Lint
on:
push:
branches:
- main
- '!dependabot/**'
pull_request:
workflow_dispatch:
env:
FORCE_COLOR: 2
NODE: 24
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
jobs:
lint:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Clone repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Set up Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "${{ env.NODE }}"
cache: npm
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint