summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2021-07-15 10:43:20 +0200
committerGitHub <noreply@github.com>2021-07-15 10:43:20 +0200
commit3f1d9a869fe6cd6a355ed5e44114f4447f9d1ddd (patch)
tree48ea534d2733debbf25db88d14687d1d565cecdb
parent8d82a3d928e89626bd526856efedf15a11c7a67a (diff)
Delete lint.yml
-rw-r--r--.github/workflows/lint.yml95
1 files changed, 0 insertions, 95 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
deleted file mode 100644
index fcd068a3..00000000
--- a/.github/workflows/lint.yml
+++ /dev/null
@@ -1,95 +0,0 @@
-name: Lint
-
-on:
- pull_request:
- push:
- branches:
- - master
- - stable*
-
-jobs:
- php:
- runs-on: ubuntu-latest
-
- strategy:
- matrix:
- php-versions: ['7.3', '7.4', '8.0']
-
- name: php${{ matrix.php-versions }}
- steps:
- - uses: actions/checkout@v2
-
- - name: Set up php ${{ matrix.php-versions }}
- uses: shivammathur/setup-php@v2
- with:
- php-version: ${{ matrix.php-versions }}
- coverage: none
-
- - name: Lint
- run: composer run lint
-
- php-cs-fixer:
- runs-on: ubuntu-latest
-
- strategy:
- matrix:
- php-versions: ['7.4']
-
- name: cs php${{ matrix.php-versions }}
- steps:
- - name: Checkout
- uses: actions/checkout@v2
-
- - name: Set up php
- uses: shivammathur/setup-php@v2
- with:
- php-version: ${{ matrix.php-versions }}
- coverage: none
-
- - name: Install dependencies
- run: composer i
-
- - name: Run coding standards check
- run: composer run cs:check || ( echo 'Please run `composer run cs:fix` to format your code' && exit 1 )
-
- node:
- runs-on: ubuntu-latest
-
- name: eslint node
- steps:
- - uses: actions/checkout@v2
-
- - name: Set up node
- uses: actions/setup-node@v2
- with:
- node-version: 14
-
- - name: Set up npm7
- run: npm i -g npm@7
-
- - name: Install dependencies
- run: npm ci
-
- - name: Lint
- run: npm run lint
-
- stylelint:
- runs-on: ubuntu-latest
-
- name: stylelint node
- steps:
- - uses: actions/checkout@v2
-
- - name: Set up node
- uses: actions/setup-node@v2
- with:
- node-version: 14
-
- - name: Set up npm7
- run: npm i -g npm@7
-
- - name: Install dependencies
- run: npm ci
-
- - name: Lint
- run: npm run stylelint