Skip to content

feat: add support for mandatory plugin in pre/post CD #3978

feat: add support for mandatory plugin in pre/post CD

feat: add support for mandatory plugin in pre/post CD #3978

Workflow file for this run

name: Dashboard CI
on:
pull_request:
types:
- opened
- synchronize
- edited
- reopened
- ready_for_review
jobs:
ci:
if: ${{ !github.event.pull_request.draft }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Check linting issues
run: yarn lint