Skip to content

T369636: Fix border misalignment #151

T369636: Fix border misalignment

T369636: Fix border misalignment #151

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 'latest'
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- name: Install and Build
run: |
npm cache clean --force
npm install
composer install
npm run build
- name: Linter
run: |
npm run lint:js
npm run lint:css
composer run lint