This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
Bump postcss from 8.4.29 to 8.4.31 (#18) #149
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 | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
name: PHP ${{ matrix.php }} Build | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ '8.1', '8.2' ] | |
node: [ 'lts/*', '14', '16' ] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- uses: ./.github/actions/build | |
with: | |
php_version: ${{ matrix.php }} | |
node_version: ${{ matrix.node }} | |
coverage: | |
runs-on: ubuntu-latest | |
name: Tests & Coverage Reporter | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- run: git config --global credential.helper store | |
- uses: ./.github/actions/build | |
- run: composer run-script test | |
- run: npm run coverage | |
lint: | |
runs-on: ubuntu-latest | |
name: Linter | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- uses: ./.github/actions/build | |
- run: composer run-script check | |
- run: npm run lint |