Bump @typescript-eslint/eslint-plugin from 5.33.1 to 8.3.0 #202
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: Runs on All Action Runners | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- 'releases/*' | |
workflow_dispatch: | |
jobs: | |
test: # make sure the action works on a clean machine without building | |
strategy: | |
max-parallel: 2 | |
matrix: | |
os: | |
- windows-latest | |
- windows-2022 | |
- windows-2019 | |
- ubuntu-22.04 | |
- ubuntu-20.04 | |
- macos-12 | |
- macos-11 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Upload File | |
uses: ./ | |
with: | |
webhook-url: ${{ secrets.WEBHOOK_URL }} | |
filename: __tests__/data/content-only.json | |
username: OS Tester (${{ matrix.os }}) | |
content: You should definitely be able to do this |