Skip to content

chore(deps-dev): bump rollup from 4.52.5 to 4.53.3 #70

chore(deps-dev): bump rollup from 4.52.5 to 4.53.3

chore(deps-dev): bump rollup from 4.52.5 to 4.53.3 #70

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
jobs:
test-typescript:
name: TypeScript Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v6
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v6
with:
node-version-file: .node-version
cache: npm
- name: Install Dependencies
id: npm-ci
run: npm ci
- name: Check Format
id: npm-format-check
run: npm run format:check
- name: Lint
id: npm-lint
run: npm run lint
- name: Test
id: npm-ci-test
run: npm run ci-test
test-action:
name: GitHub Actions Test
runs-on: ubuntu-latest
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v6
- name: Test Local Action
id: test-action
uses: ./
continue-on-error: true
with:
php-version: 8.4
build:
name: Build the dist/ directory
runs-on: ubuntu-latest
needs:
- test-action
- test-typescript
steps:
- uses: actions/checkout@v6
- name: Setup Node.js
id: setup-node
uses: actions/setup-node@v6
with:
node-version-file: .node-version
cache: npm
- name: Install Dependencies
id: npm-ci
run: npm ci
- run: npm run all
- uses: stefanzweifel/git-auto-commit-action@v7
if: github.event_name != 'pull_request'
with:
commit_message: Add prepared script
commit_options: '--no-verify --signoff'
file_pattern: dist/
commit_user_name: github-actions
commit_user_email: github-actions[bot]@users.noreply.github.com
commit_author: hw <github-actions[bot]@users.noreply.github.com>
push_options: ''