Bump @typescript-eslint/parser from 8.4.0 to 8.5.0 (#164) #394
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: Run plugin check (default) | |
uses: ./ | |
continue-on-error: true # Since we expect it to always fail for the test plugin. | |
with: | |
build-dir: 'tests/fixtures/hello-dolly-copy' | |
- 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: 'tests/fixtures/hello-dolly-copy' | |
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: 'tests/fixtures/hello-dolly-copy' | |
wp-version: 'trunk' | |
- name: Run plugin check (plugin dependencies) | |
uses: ./ | |
continue-on-error: true # Since we expect it to always fail for the test plugin. | |
with: | |
build-dir: 'tests/fixtures/plugin-with-dependencies' |