Event to update the counter in user menu #418
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Style | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
php: | |
name: PHP | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP with tools | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
extensions: ctype, dom, exif, gd, gmp, hash, intl, json, libxml, mbstring, opcache, pcre, pdo, pdo_mysql, zlib | |
tools: cs2pr, phpcs, php-cs-fixer | |
- name: phpcs | |
run: phpcs -n -q --report=checkstyle | cs2pr | |
- name: php-cs-fixer | |
run: php-cs-fixer fix --dry-run --diff | |
ts: | |
name: TS Prettier | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
cache: "npm" | |
- run: npm install | |
- name: Run prettier | |
run: | | |
shopt -s globstar | |
npx prettier -w ts/**/*.ts | |
- run: echo "::add-matcher::.github/diff.json" | |
- name: Show diff | |
run: | | |
git checkout -- package-lock.json | |
git diff --exit-code | |
scss: | |
name: SCSS Prettier | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
cache: "npm" | |
- run: npm install | |
- name: Run prettier | |
run: | | |
shopt -s globstar | |
npx prettier -w files/style/*.scss | |
- run: echo "::add-matcher::.github/diff.json" | |
- name: Show diff | |
run: | | |
git checkout -- package-lock.json | |
git diff --exit-code |