simplify CI #1
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: Build, Test and Lint | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress | |
- name: Run PHPUnit | |
run: composer run-script test | |
- name: Run PHPCS | |
run: composer run-script lint | |
- name: Install NPM dependencies | |
run: npm ci | |
- name: Run lint | |
run: npm run lint | |