Skip to content

Update CLI to use package objects for projects instead of path #230

Update CLI to use package objects for projects instead of path

Update CLI to use package objects for projects instead of path #230

Workflow file for this run

name: PR Checks
on:
pull_request:
types: [opened, synchronize]
jobs:
php-lint-test:
name: "PHP: Lint, Test"
timeout-minutes: 15
runs-on: ubuntu-latest
strategy:
matrix:
php: ["7.4", "8.0", "8.1", "8.2", "8.3"]
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: lts/*
- uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: |
${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/package.json', '**/pnpm-hashed.lock') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: phpcs
- name: Check syntax errors
# For plugins, we need to check production dependencies as well
# So, let us install them in src/temp to avoid their exclusion inside vendor
run: |
pnpm -r --parallel --filter "./plugins/**" exec composer config vendor-dir src/temp
pnpm -r --parallel --filter "./plugins/**" exec composer install --no-dev
find ./plugins/*/src ./packages/php/*/src ! -path "*/vendor/*" ! -path "*/node_modules/*" -type f -name '*.php' -print0 | xargs -0 -n1 -P4 php -l -n | (! grep -v "No syntax errors detected" )
- name: Setup
run: "pnpm run setup:php"
- name: Lint
run: "pnpm run lint:php"
- name: Test
run: "pnpm run test:php"
if: matrix.php == '8.3'
js-lint-build:
name: "JS: Lint, Build and Test"
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: lts/*
- uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: |
${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/package.json', '**/pnpm-hashed.lock') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Wireit cache
uses: google/wireit@setup-github-actions-caching/v1
- name: Install dependencies
run: pnpm install
- name: Lint
run: "pnpm lint:js"
- name: Typecheck
run: pnpm typecheck
- name: Build
run: pnpm build