Skip to content

Modernize PHP test matrix, update PHPStan for 8.2+ compatibility #302

Modernize PHP test matrix, update PHPStan for 8.2+ compatibility

Modernize PHP test matrix, update PHPStan for 8.2+ compatibility #302

Workflow file for this run

name: JavaScript Tests
on:
push:
branches:
- 'develop'
- 'main'
pull_request:
branches:
- '**'
jobs:
build:
name: Test the Build
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Debugging
run: |
node -v
npm -v
- name: Get npm cache directory
id: npm-cache-dir
run: |
echo "DIR=$(npm config get cache)" >> $GITHUB_OUTPUT
echo "NPM_VERSION=$(npm -v)" >> $GITHUB_OUTPUT
echo "NODE_VERSION=$(node -v)" >> $GITHUB_OUTPUT
- name: Cache Dependencies
id: npm-cache
uses: actions/cache@v5
with:
path: ${{ steps.npm-cache-dir.outputs.DIR }}
key: ${{ runner.os }}-npm-${{ steps.npm-cache-dir.outputs.NODE_VERSION }}-${{ steps.npm-cache-dir.outputs.NPM_VERSION }}-${{ hashFiles('package-lock.json') }}
- name: Install Dependencies
run: npm install --legacy-peer-deps
- name: Run the build
run: |
npm run lint
npm run build