Skip to content

Bump @typescript-eslint/eslint-plugin from 7.1.0 to 7.1.1 (#49) #116

Bump @typescript-eslint/eslint-plugin from 7.1.0 to 7.1.1 (#49)

Bump @typescript-eslint/eslint-plugin from 7.1.0 to 7.1.1 (#49) #116

Workflow file for this run

name: 'test'
on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Simulate a build step
run: |
mkdir build/
mv hello.php build/
- name: Run plugin check (default)
uses: ./
continue-on-error: true # Since we expect it to always fail for the test plugin.
with:
build-dir: 'build'
- name: Run plugin check (exclude checks)
uses: ./
continue-on-error: true # Since we expect it to always fail for the test plugin.
with:
build-dir: 'build'
exclude-checks: |
late_escaping
plugin_readme
include-experimental: true
- name: Run plugin check (trunk)
uses: ./
continue-on-error: true # Since we expect it to always fail for the test plugin.
with:
build-dir: 'build'
wp-version: 'trunk'