Skip to content

chore: update bootstrap to v5.3.3 #27

chore: update bootstrap to v5.3.3

chore: update bootstrap to v5.3.3 #27

Workflow file for this run

on: push
name: Continuous Integration
jobs:
cs:
name: Coding Standards
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP Action
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
tools: php-cs-fixer
- name: Run PHP-CS-Fixer
run: php-cs-fixer fix . -v --dry-run --using-cache=no
build:
name: Build, Package & Upload Artifact
needs: cs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: '0'
- uses: actions/setup-node@v3
with:
node-version: '20'
- name: Build & package
run: make package
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: dist-package
path: dist/com-mitglieder-*.zip
retention-days: 7