Skip to content

add: phpstan and unit tests for css relative url() and @import path r… #13

add: phpstan and unit tests for css relative url() and @import path r…

add: phpstan and unit tests for css relative url() and @import path r… #13

Workflow file for this run

name: Test
on: push
jobs:
test:
name: Test
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: 'npm'
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
tools: composer:v2
- name: Install JS tooling
run: npm install --ignore-scripts
- name: Install PHP tooling
run: composer install
- name: Start the environment
run: npm run start
- name: Lint
run: npm run lint
- name: Test
run: npm run test