Skip to content

Updated GitHub workflow #63

Updated GitHub workflow

Updated GitHub workflow #63

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Install Composer dependencies
run: composer install --prefer-dist --no-progress
- name: Install NPM dependencies
run: npm --prefix tests install
- name: Run test suite
run: composer run-script test