Skip to content

Bring PHP functionality in line with recent JS changes and add integration tests for third parties #112

Bring PHP functionality in line with recent JS changes and add integration tests for third parties

Bring PHP functionality in line with recent JS changes and add integration tests for third parties #112

Workflow file for this run

name: Linting, Formatting, and Testing
on:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run format:check
- run: npm run lint:check
- run: npm test