chore(deps): update eslint monorepo to v9.26.0 #3171
Workflow file for this run
This file contains hidden or 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: example-custom-command | |
# example using the command parameter | |
# this allows any cli command to be run | |
# the command parameter causes other action parameters that would be passed to Cypress | |
# to be ignored and so it should not be used with these other parameters | |
# for example, browsers, config, record, parallel, spec, etc would be ignored | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
start: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Custom tests | |
uses: ./ | |
with: | |
command: npm run custom-test | |
working-directory: examples/custom-command | |
- name: Show saved file | |
run: cat examples/custom-command/results.json |