This repository has been archived by the owner on Jun 17, 2024. It is now read-only.
chore(deps): update dependency eslint-plugin-jsdoc to v48.2.10 #3000
Workflow file for this run
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: QA | |
on: | |
pull_request: | |
push: | |
jobs: | |
qa: | |
name: Run QA | |
# We don't need to run this on Renovate PRs. We will already test the `renovate/foo` branch. | |
if: github.event_name != 'pull_request' || github.actor != 'renovate[bot]' | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 | |
- name: Select NodeJS version | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4 | |
with: | |
# renovate: datasource=docker depName=node versioning=node | |
node-version: "20.12.2" | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Install dependencies | |
run: yarn install | |
# Pre-build QA | |
- name: Check constraints | |
run: yarn constraints | |
# Build | |
- name: Build | |
run: | | |
yarn workspace @plantdb/libplantdb build | |
yarn workspace @plantdb/plant-cli build | |
yarn workspace @plantdb/plant-nursery build | |
# Post-build QA | |
- name: Lint Prettier | |
run: yarn lint:prettier | |
- name: Lint ESLint | |
run: yarn lint:eslint | |
- name: Lint TSC | |
run: yarn lint:tsc |