Bump glob from 8.1.0 to 10.4.2 #1082
Workflow file for this run
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 Action | |
on: | |
push: | |
branches: | |
- master | |
pull_request_target: | |
branches: | |
- master | |
permissions: | |
checks: write | |
contents: read | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request_target' && github.head_ref || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Run action | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
steps: | |
- name: Check out repository (push) | |
if: ${{ github.event_name == 'push' }} | |
uses: actions/checkout@v3 | |
- name: Check out repository (pull_request_target) | |
if: ${{ github.event_name == 'pull_request_target' }} | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "yarn" | |
- name: Install dependencies | |
run: yarn install | |
- name: Build action | |
run: yarn build | |
- name: Run linters | |
uses: ./ | |
with: | |
continue_on_error: false | |
eslint: true | |
prettier: true | |
prettier_extensions: "css,html,js,json,jsx,less,md,scss,ts,tsx,vue,yaml,yml" | |
neutral_check_on_warning: true |