Skip to content

Create Plugin: Dynamic webpack publicPath #4112

Create Plugin: Dynamic webpack publicPath

Create Plugin: Dynamic webpack publicPath #4112

Workflow file for this run

name: 'Check PR labels'
on:
pull_request:
types:
- opened
- synchronize
- reopened
- labeled
- unlabeled
- edited
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}
cancel-in-progress: true
permissions:
pull-requests: write
jobs:
check-labels:
if: ${{ github.actor != 'dependabot[bot]' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
cache-dependency-path: ./.github/actions/check-labels/package-lock.json
- name: Install dependencies
run: npm ci
working-directory: ./.github/actions/check-labels
- name: Check labels
uses: ./.github/actions/check-labels