Bump cross-spawn from 7.0.3 to 7.0.6 #28
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: Run Linter | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
linter: | |
name: Run linter | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20' # Specify the Node.js version you want to use | |
- name: Install dependencies | |
run: yarn install | |
- name: Run linter | |
run: yarn run lint |