Skip to content

fix: skip composer install if composer is not available #50

fix: skip composer install if composer is not available

fix: skip composer install if composer is not available #50

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Ubuntu latest should have already had PHP pre-installed
# https://github.com/marketplace/actions/setup-php-action#cloud-osplatform-support
# however, we prefer to use the latest stable version, with composer
- name: Setup PHP with Composer
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
tools: composer
- name: Prepare pnpm
uses: pnpm/action-setup@v2
- name: Prepare Node.js
uses: actions/setup-node@v3.8.1
with:
node-version-file: .node-version
cache: pnpm
- name: Install deps
run: pnpm install
- name: ESLint
run: pnpm run eslint
- name: Prettier code style check
run: pnpm prettier . --check
- name: Build
run: pnpm run build
- name: Publish (development)
if: github.repository == 'RightCapitalHQ/php-parser' && github.base_ref == github.event.repository.default_branch
env:
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
run: |
npm config set //registry.npmjs.org/:_authToken "${NPM_TOKEN}"
preid=$(sed -e s:/:-:g <<<${{ github.head_ref }}).${{ github.run_number }}.${{ github.run_attempt }}
npm --no-git-tag-version version prerelease --preid="${preid}"
pnpm publish --no-git-checks --access public --tag development
- name: Publish (main)
if: github.repository == 'RightCapitalHQ/php-parser' && github.ref_name == github.event.repository.default_branch
env:
NPM_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
run: |
npm config set //registry.npmjs.org/:_authToken "${NPM_TOKEN}"
git config --local user.email "npm-publisher@rightcapital.com"
git config --local user.name "GitHub Actions[bot]"
pnpm beachball publish --access public --yes -m 'chore(release): applying package updates'