This repository was archived by the owner on Jan 12, 2026. It is now read-only.
Enhancement: exclude_operations_with_extension support for specific values #7311
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: Test | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| merge_group: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node_version: [16, 18, 20] | |
| env: | |
| YARN_IGNORE_NODE: 1 # silence node 16 complaints | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node_version }} | |
| cache: yarn | |
| - name: Install Task | |
| run: curl -sL https://taskfile.dev/install.sh | sudo bash -s -- -b /usr/local/bin/ | |
| - name: Lint | |
| run: task default lint | |
| - name: Test | |
| run: task default test |