fix: fix not_due label in the Clinical Reminders widget (#7201) #1031
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: Styling | |
on: | |
push: | |
branches: [ rel-702 ] | |
pull_request: | |
branches: [ rel-702 ] | |
permissions: | |
contents: read | |
jobs: | |
php_styling: | |
runs-on: ubuntu-22.04 | |
name: PHP | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
- name: Report PHP Version | |
run: php -v | |
- name: Install php_codesniffer | |
run: | | |
failTest=false | |
composer global require "squizlabs/php_codesniffer=3.*" || failTest=true | |
if $failTest; then | |
exit 1 | |
fi | |
- name: Check PHP Styling | |
run: | | |
failTest=false | |
$HOME/.composer/vendor/bin/phpcs -p -n --extensions=php,inc --report-width=120 --standard=ci/phpcs.xml --report=full . || failTest=true | |
if $failTest; then | |
exit 1 | |
fi | |
css_styling: | |
runs-on: ubuntu-22.04 | |
name: CSS | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install npm package | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: npm install | |
run: | | |
failTest=false | |
npm install || failTest=true | |
if $failTest; then | |
exit 1 | |
fi | |
- name: Check CSS Styling | |
run: | | |
failTest=false | |
npm run stylelint || failTest=true | |
if $failTest; then | |
exit 1 | |
fi | |
js_linting: | |
runs-on: ubuntu-22.04 | |
name: JS | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install npm package | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: npm install | |
run: | | |
failTest=false | |
npm install || failTest=true | |
if $failTest; then | |
exit 1 | |
fi | |
- name: Check JS Linting | |
run: | | |
failTest=false | |
npm run lint:js || failTest=true | |
if $failTest; then | |
exit 1 | |
fi |