Skip to content

Added possibility to open broadcast channel without additional checks #16

Added possibility to open broadcast channel without additional checks

Added possibility to open broadcast channel without additional checks #16

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches: [main]
types: [labeled, opened, synchronize, reopened]
jobs:
# build:
# name: Build, test & lint
# runs-on: ubuntu-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - name: Use Node 20
# uses: actions/setup-node@v4
# with:
# node-version: 20
# - name: Install pnpm 9.8.0
# uses: pnpm/[email protected]
# with:
# version: 9.8.0
# - name: Install pnpm dependencies (with cache)
# uses: covbot/pnpm-install-with-cache@v1
# - name: Build, test & lint
# run: pnpm run ci --filter=...[${{ github.event.pull_request.base.sha }}...${{ github.sha }}]
changeset:
name: Check for changeset existence
runs-on: ubuntu-latest
if: ${{ !contains(github.event.pull_request.labels.*.name, 'chore') }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Use Node 20
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install pnpm 9.8.0
uses: pnpm/[email protected]
with:
version: 9.8.0
- name: Install pnpm dependencies (with cache)
uses: covbot/pnpm-install-with-cache@v1
- name: Danger
run: pnpm danger ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}