Merge branch 'main' into labeler-test #16
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint code | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- '*' | |
- '!master' | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Use Node.js v22.10.0 (LTS) | |
uses: ./.github/actions/setup-node-environment | |
with: | |
node-version: 22.10.0 | |
- name: Cache for Turborepo | |
uses: rharkor/caching-for-turbo@v1.5 | |
- name: Lint projects | |
run: pnpm lint:affected |